I just reread your post, and now I understand that you want to write the table as a "pure" html-table with macros in tablecells... If this is the case, you might install (1)HTMLFormattingPlugin http://www.tiddlytools.com/#HTMLFormattingPlugin and SectionLinksPlugin http://www.tiddlytools.com/#SectionLinksPlugin, which will (1)allow you to mix wiki-style formatting syntax within HTML formatted content and (2) can use ##SomeSection instead of {{tiddler.title}}##SomeSection. Then you could write something like: <table border="1"> <tr> <td><<tiddler [[##intro]]>></td><td><<tiddler Image with: [[##ref]]>><<tiddler [[##caption]]>></td> </tr> <tr> <td>''Challenge'' - ''<<tiddler [[##challenge]]>>''</ td><td>''Context'' - <<tiddler ##body>></td> </tr> </table> etc
You could avoid installing the HTMLFormattingPlugin by rewriting the tiddlermacro <<tiddler ##SomeSection>> to <div macro'=tiddler ##SomeSection'></div> if you prefer everything to be "html-like".... Regards Måns Mårtensson > > embedded into a TaggedViewTempate using html tables......but I am nor > > sure how to go about it.......can someone lead me of as to how to > > translate this format into a taggedViewTemplate. > > Create a FormatViewTemplate (you'll have to install Eric's > TaggedTemplateTweak plugin > first..http://www.tiddlytools.com/#TaggedTemplateTweak) > > Copy ViewTemplate tiddler into the FormatViewTemplate > You could replace,remove "<div class='viewer' macro='view text > wikified'></div>" > with: <div class='viewer (or table or whatever)' macro='tiddler Format > with: {{tiddler.title}}'></div>, or simply add it anywhere.. > > Now if you tag a tiddler with "Format" the tiddler should be wikified > as a table, when in ViewMode.. > > Regards Måns Mårtensson -- 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.

