#4575: [with patch, needs work] Option to show nested lists as html tables
-------------------------+--------------------------------------------------
Reporter: whuss | Owner: whuss
Type: enhancement | Status: reopened
Priority: major | Milestone: sage-3.4.2
Component: notebook | Resolution:
Keywords: |
-------------------------+--------------------------------------------------
Comment(by jason):
What is the status of this? I'm needing it pretty often, and end up
writing my own every time:
{{{
def html_table(data):
html("<table border=1>")
for row in gg:
html("<tr>")
for cell in row:
html("<td>")
show(cell)
html("</td>")
html("</tr>")
html("</table>")
}}}
(it looks nicer if you have #5836 applied)
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4575#comment:13>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---