On Friday, November 15, 2019 at 10:30:39 PM UTC-8, A Gloom wrote: > > Field names must be lowercase letters, digits or the characters - (dash), > _ (underscore) and . (period). > I need to find the official info on character restrictions for tiddler > titles and tag names if any >
The restrictions on field names is because of the way tiddlers are stored as HTML DIVs in a standalone file. For example: <div anotherfield="test2" created="20191116072632823" modified= "20191116072810554" otherfield="test" tags="TagWith"Quote [[Tag with spaces]] TagOne" title="New Tiddler" type="text/vnd.tiddlywiki"> <pre>tiddler text content goes here</pre> </div> Except for the tiddler text content, all tiddler fields are stored using attributes of an HTML DIV, and those attribute names are limited to lowercase, digits, dash, underscore, and period. Note that the tags field *value* is automatically pre-processed by the TW core to ensure that tags with spaces are enclosed by doubled square brackets, and any embedded quotes within a tag name are replaced with " so it doesn't interfere with the quote delimiters used to surround the HTML attribute value itself. enjoy, -e -- 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/b62eefc5-4676-475f-8013-a825337c311d%40googlegroups.com.

