> Slightly off subject but if you do want to access and include fields
> from other tiddlers then you can use this simple macro that I wrote.
> ---------------------------------
> config.macros.includeField = {see also: http://www.TiddlyTools.com/#WikifyPlugin Usage: <<wikify format value value value value ...>> where: * format specifies the format of the wiki-syntax content to be rendered * value parameters (space-separated), specified using any of: o "tiddlername::slicename" - a tiddler slice reference o "fieldn...@tiddlername" - a tiddler custom field reference o {{config.options.txtUserName}} - evaluated javascript parameter o "none of the above" - literal text You can use the plugin-defined <<wikify>> macro to format and render up to 10 field values as a time, using substitution markers ("%0" through "%9" character sequences). When the macro is processed, each value parameter is retrieved and embedded into the formatted content, replacing its corresponding marker, and then the resulting content is passed to the core wikify() parser to render and display it. Thus, to render any field from any tiddler, you can write: <<wikify "%0" fieldn...@tiddlername>> Similarly, to render field content as a LINK, you could write: <<wikify "[[%0]]" fieldn...@tiddlername>> and, to render a 'pretty link' constructed from field values, you could write: <<wikify "[[%0|%1]]" desc...@sometiddler l...@sometiddler>> (assuming the 'descrip' and 'link' are custom fields defined for SomeTiddler) enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

