Make static links to tiddlers with spaces work

A bit of a hack - the savetiddlers command should generate filenames
better
This commit is contained in:
Jeremy Ruston
2013-03-20 11:02:06 +00:00
parent b1d218065e
commit 0d2ac57ff7
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -70,6 +70,7 @@ LinkWidget.prototype.generate = function() {
var wikiLinkTemplateMacro = this.renderer.findMacroDefinition("tw-wikilink-template"),
wikiLinkTemplate = wikiLinkTemplateMacro ? wikiLinkTemplateMacro.text.trim() : "$uri_encoded$",
wikiLinkText = wikiLinkTemplate.replace("$uri_encoded$",encodeURIComponent(this.to));
wikiLinkText = wikiLinkText.replace("$uri_doubleencoded$",encodeURIComponent(encodeURIComponent(this.to)));
this.attributes.href = wikiLinkText;
}
} else {