I have used the classic tiddlywiki for quite a while now and really like the ease of use. I have read about the TW5 and decided to give it a try.
I am currently trying out features and can not find the correct way to link to a local file in a relative way.
Suppose I have my tiddlywiki in
/var/www/index.html
and I have a file I want to show in:
/var/www/myfiles/something.pdf
What I used to do in the classic TW was:
[[nicemane|myfiles/something.pdf]]
This worked flawlessly, it just opened the link
http://mysite/myfiles/something.pdfwhen clicking on the link in the tiddlywiki
However in TW5 it does not resolve to this address but to:
http://mysite/#myfiles/something.pdfso it adds a pound (#) sign. Therefore my browser (Firefox 26.0 with Tiddlyfox extension) tries to open it as a new tiddler which it can not find so it shows a blank one.
I can resolve this by using:
<a href="myfiles/something.pdf">nicename</a>
But this is not as lean as the original way and I would have to manually change tiddlers I want to import.
Any suggestions?