Hi,
The TW5 file template is: $:/core/templates/tiddlywiki5.html
<https://github.com/Jermolene/TiddlyWiki5/blob/master/core/templates/tiddlywiki5.html.tid#L37-L47>
As Ton pointed out you can search for the library marker and put all your
tiddlers ABOVE it.
<noscript>
<div id="splashArea">
`{{$:/core/templates/static.area}}`
</div>
</noscript>
<!--~~ Ordinary tiddlers ~~-->
`{{$:/core/templates/store.area.template.html}}` <------- This filter
produces the tiddler store in the HTML file.
<!--~~ Library modules ~~-->
<div id="libraryModules" style="display:none;">
`{{{ [is[system]type[application/javascript]library[yes]]
||$:/core/templates/javascript-tiddler}}}`
</div>
As you can see above. There is no special marker for the tiddler store. So
use the id="libraryModules" and place your tiddlers in front of it. That's
safe.
You could also use the </noscript> marker and place your tiddlers after it.
Almost the same thing.
Be aware. The filter will _not_ be part of a tiddlywiki.html file. It's
only visible in the template!
Do NOT use the HTML comment. Comments can and will be changed at will.
have fun!
mario
--
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 view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/257513f5-5b97-46e8-bd07-ef91923e94d6%40googlegroups.com.