OK, thanks. Another question now comes up. I found the nested list documentation and figured out how to return tiddler text rather than titles. How can I preserve the formatting of the transcluded tiddlers? Right now my bold text turns into apostrophes and hard coded breaks show up as text. I am using the following code to imperfectly create my text.
<$list filter="[tag[dimension]]"> <$view field="title"/> <$view field="text"/> </$list> TW5 looks really good and I learn a great deal from the TW community. Joshua On Tuesday, August 27, 2013 2:04:05 PM UTC-5, Jeremy Ruston wrote: > > Hi Joshua > > The filtered transclusion syntax will give you a block mode list if it is > at the start of a paragraph and followed by a newline (ie, on it's own in a > paragraph). Otherwise it will give you an inline list. > > If you want to force an inline list you can either do so via CSS, or use > the underlying list widget: > > <$list filter="[tag[tagName]]"></$list> > > Here, the list widget doesn't trigger block mode because there isn't a > newline after the opening tag. > > Best wishes > > Jeremy > > > > On Tue, Aug 27, 2013 at 4:43 PM, Joshua <[email protected]<javascript:> > > wrote: > >> I am experimenting with TW5 and have noticed something odd. The following >> markup {{{ [tag[tagName]] }}} gives me what looks like a list sometimes and >> other times it is included within a paragraph with now breaks. See below. >> If it is supposed to do this, how can I force there to be no breaks when >> the list is not in a paragraph? >> >> When in not in a paragraph: >> >> Title 1 >> Title 2 >> Title 3 >> >> When part of a paragraph.Title1Title 2Title 3 >> >> Thanks, >> Joshua >> >> -- >> You received this message because you are subscribed to the Google Groups >> "TiddlyWiki" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To post to this group, send email to [email protected]<javascript:> >> . >> Visit this group at http://groups.google.com/group/tiddlywiki. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > > > -- > Jeremy Ruston > mailto:[email protected] <javascript:> > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" 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/tiddlywiki. For more options, visit https://groups.google.com/groups/opt_out.

