> When I update the MainMenu tiddler with a new tiddler say [[ test ]] > and then create test and edit something into it and then save and exit > here is what I get.
Cause: whitespace matters in tiddler links! Solution: remove the leading/trailing spaces from within the [[...]]. Here's what's happening: 1) When you click [[ test ]] in MainMenu, TiddlyWiki looks for a tiddler named " test " (with leading/trailing spaces). 2) A non-existent tiddler named " test " (with spaces) is displayed. Because it doesn't exist yet, you get the "... double-click to create it... " default text. 3) You invoke edit on " test ", and enter content. Note that the title field input *includes* the leading/trailing spaces in the tiddler name. 4) You press "done". The core handler reads the title field input, and ** trims off any leading/trailing whitespace ** before creating the tiddler. 5) You now have a tiddler named [[test]] (no spaces!) that contains the content you input. 6) The MainMenu still has a link to [[ test ]] (with spaces!)... thus, *that* LINK is still pointing at the non-existent tiddler. Q.E.D. 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.

