> I have a tiddler with some sections :
> !To do
> !!!Now
> Blabla
> !!!Later
> Blibli
> !Another section
>
> I want to include the To do section in another tiddler but it doesn't
> work :
>
> <<tiddler 'title##To do'>> gives nothing while I expected it to give :
>
> !!!Now
> Blabla
> !!!Later
> Blibli
>
> The pb seems to be with the "!!!".

By definition, a tiddler section begins immediately following a
heading element, ! through !!!!!, and ends immediately before the very
next heading element, regardless of whether or not it is a matching
'level' of heading.

For your purposes, where you want heading formatted content inside the
section without those headings forming new sections, you need to fall
back to using HTML syntax for the non-section headings:

!To do
<html><h3>Now</h3><html>
Blabla
<html><h3>Later</h3><html>
Blibli
!Another section

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to