Note: An alternative skin, TW4MW (work in progress), is available from the user preferences.
Username
TiddlyWiki Community Wiki
This page is still incomplete. You can help by contributing to its expansion.
Please improve the article, or discuss the issue on the talk page.
by Eric
The current TiddlyWiki username value is stored internally in javascript as config.options.txtUserName.
To display/modify the value using an edit field embedded in tiddler content, you can use the core's built-in <<option>> macro, like this:
<<option txtUserName>>
However, to display the value directly as inline tiddler content (e.g. as part of the SiteTitle or SiteSubtitle), using http://www.TiddlyTools.com/#WikifyPlugin you can write:
<<wikify "%0" {{config.options.txtUserName}}>>
or use the InlineJavascriptPlugin to write:
<script>return config.options.txtUserName</script>

