At
http://tiddlyweb.peermore.com/wiki/recipes/default/tiddlers/jsMath
you'll see a traceback produced by WikklyText 1.6.0 when rendering the
content of the jsMath plugin.
You can see the raw text at:
http://tiddlyweb.peermore.com/wiki/recipes/default/tiddlers/jsMath.txt
A little bit of narrowing down suggests that it is table header
handling that's not happening.
This page show a table header being rendered as table cells, not
headers:
http://tiddlyweb.peermore.com/wiki/recipes/default/tiddlers/tableheader
http://tiddlyweb.peermore.com/wiki/recipes/default/tiddlers/tableheader.txt
The trailing h, used to identify a header, is being treated as a(n
unclosed) table cell.
The former wraps the respective row in a THEAD element, whereas the
latter uses a TH element for the respective cell(s):
<table>
<thead>
<tr>
<td>cellA</td> <td>cellA</td> <td>cellA</td>
</tr>
</thead>
</table>
vs.
<table>
<tbody>
<tr>
<th>cellA</th> <th>cellA</th> <th>cellA</th>
</tr>
</tbody>
</table>
-- F.
-- F.
This might be of use:
http://www.456bereastreet.com/archive/200410/bring_on_the_tables/
> just wondering if there's a way to fold one case into the other
I guess ignoring the THEAD issue and rendering "|foo|bar|h" as THs
instead should be fine.
-- F.
This might be of use:
> I need to check the HTML spec to understand the semantic difference here
http://www.456bereastreet.com/archive/200410/bring_on_the_tables/
> just wondering if there's a way to fold one case into the otherI guess ignoring the THEAD issue and rendering "|foo|bar|h" as THs
instead should be fine.
-- F.