I have TW 5.1.23 running on node. I'm exporting to static html using the RenderCommand:
tiddlywiki --render [!is[system]] "[encodeuricomponent[]addsuffix[.html]]"
The internal links generated still have the # like an achor tag. Ex:
In topicA I have a link to topicB ([[topicB]] the html generated for topicA has
<a class="tc-tiddlylink tc-tiddlylink-resolves" href="#topicB">topicB</a>
How can I get the links to point to the files?
<a class="tc-tiddlylink tc-tiddlylink-resolves" href="#topicB.html">topicB</a>
Thanks.