Hi all,

I would like to to transclude a list of tiddlers (specified as a filter 
expression), each containing unordered list items. The transcluded items 
should render in such a way that they appear as if they were written 
directly in-place. So for instance I have tiddler A tagged with "foo" and 
the following content:

* list item
** sub list item 

And tiddler B with content:

* list item
** <$list filter="[tag[foo]]"><$transclude field="text" mode="block"/></
$list>

Which (expectedly) renders:

<ul>
  <li>list item</li>
  <li><ul>
      <li>list item
        <ul><li>sub list item</li></ul>
      </li>
   </li></ul>
</ul>

But instead, the resulting rendered list should "behave" like:

* list item
** list item
*** sub list item

Which translates to:

<ul>
  <li>list item
    <ul>
      <li>list item
        <ul><li>sub list item</li></ul>
      </li>
    </ul>
  </li>
</ul>

Is there a simple way to do this? Or do I have to write a custom parser for 
this?

Thanks!

BTW: TW5 is awesome! :)

Best,
S

-- 
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/d/optout.

Reply via email to