> How can I put a table within a line of text?
Well, tables are HTML block elements, and as such are not meant to be
used inline.
You might be able to achieve it with some hacks though.
First, make the wiki markup work inline by using transclusion[1]; create
a tiddler "myTable" and add your table with a custom class[2] "inlineTable".
Then transclude that tiddler into your original tiddler and add the
following to your StyleSheet:
.inlineTable {
display: inline;
}
HTH.
-- F.
[1] http://tiddlywiki.org/wiki/Transclusion
[2] http://tiddlywiki.org/wiki/Tables#Custom_CSS_Classes
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" 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/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---