On Jan 28, 5:25 am, UnclePhil <[email protected]> wrote: > I generate everyday something like this > <html> > <body> > <div id="storeArea"> ... > </div> > </body> > </html> > > and it work perfectly with the includeplugin (10 external files, from > 200 to 2500 tiddlers per files
The only reason this works properly is because the TW core function, locateStoreArea(), includes *fallback* handling so that if either of the standard file markers, <!--POST-STOREAREA--> or <!--POST-BODY- START-->, are not found, the core processes *everything* up to the end of the file as part of the storeArea content. While this is not normally a problem for the TW client-side (browser) runtime, there are TiddlyWiki plugins and external (server-side) tools that read/write TiddlyWiki documents, and expect a properly- constructed file, including all internal markers. One very important purpose of these markers is to ensure that the tiddler *data* (the storeArea) can be easily located with the file, regardless of any other file content that may be present around it. If the TW file format changes in a future release, existing code will still be able to find and read the tiddler data as long as the storeArea syntax and the surrounding file markers remain the same. -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.

