> > I did something similar but used datatiddler plugin to store data in
> > <data> .... </data>.
> > Is there a particular reason why you use slices ?
>
> Slices (and sections) are native TW syntax.  This makes it easier to
> share your tiddlers with others without adding any extra plugin
> dependencies.

Addendum:

If you want to *hide* the display of the slices or sections (similar
to <data>...</data>), you can enclose them inside TW comment markers,
like this:

/%
name:value
name:value
name:value
%/

and

/%
!sectionname
... multi-line content
goes here...
!end
%/

Note use of "!end" at the end of the section: each section in a
tiddler starts with a line containing '!someName', and stops at the
end of the tiddler OR at a line that contains another '!
someOtherName'.  Thus, by putting !end following the section content,
it ensures that the closing comment marker (%/) will not be included
in that section when it is retrieved later on via <<tiddler
TiddlerName##sectionname>>

Also note that, if you are defining several sections in the same
tiddler, you can write it like this:

/%
!sectionA
foo
!sectionB
bar
!sectionC
mumble
!end
%/

enjoy,
-e
--~--~---------~--~----~------------~-------~--~----~
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