The table information you are using is for TWC (Tiddlywiki classic) .. I suspect you are using TW5 (Tiddlywiki 5) which is currently in alpha testing and should hopefully soon enter beta testing.
There are differences in the way tables are used between the products. To address your issues in the order you gave them 1. Use the following to control the table width in TW5 @@width:400px; |example table | Another cell| |Next line| Another cell on next line| @@ 2. Headers in tables are made with an ! (exclamation mark) preceding the text in TW5 |!Header|!2nd header| |Content 1| Content 2| A following h still works, however there is no style in the CSS that shows it is a header .. so it won't stand out much. You would need to assign a style to <thead> 3. A following f still works for footer , however again there is no style in the CSS that shows it is a footer.. so it won't stand out much. You would need to assign a style to <tfoot> 4, You need to have at least two lines between them to work, as the rendering engine for TW5 creates a "block mode" render of the html with two following lines. 5. C for caption does work and generates <caption> however once again no style is defined to show the difference. 6. Same answer as 4, the table end needs two blank lines following to render in "block mode". Hopefully that helps David -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywikidev. For more options, visit https://groups.google.com/groups/opt_out.
