]> sipb.mit.edu Git - ikiwiki.git/commitdiff
workaround and some analysis of the bug
authorchrysn <chrysn@web>
Sun, 25 Mar 2012 02:46:11 +0000 (22:46 -0400)
committeradmin <admin@branchable.com>
Sun, 25 Mar 2012 02:46:11 +0000 (22:46 -0400)
doc/bugs/Underscores_in_links_don__39__t_appear.mdwn

index d63f9cd185068870ccf560e8b6ffe3c598569cf2..b25dfb7fe2af1b3e27f562cda1c0c8581c9e1d0b 100644 (file)
@@ -6,3 +6,13 @@ Expected behavior:
 
 I would like to be able to create links with underscores. I realize this is a feature, and I searched for ways to escape the underscore so it would appear, but I didn't find any.
 
 
 I would like to be able to create links with underscores. I realize this is a feature, and I searched for ways to escape the underscore so it would appear, but I didn't find any.
 
+> as a workaround, you can use \[[cmd\_\_95\_\_test|cmd_test]] (which will link to a page named "cmd test" at the url location "cmd\_test") or \[[cmd\_\_95\_\_test]] (which will link to a page named "cmd\_test" at the url location "cmd\_\_95\_\_test"). i would, from my limited understanding of ikiwiki internals, consider the bug valid, and suggest that
+>
+> * explicit link text be not subject to de-escaping (why should it; this would be the short term solution)
+> * escaped page names never be used in user visible parts of ikiwiki (in my opinion, a user should not need to know about those internals, especially as they are configuration dependant (wiki_file_regexp))
+>
+> note that in [[ikiwiki/wikilink]], that very behavior is documented; it says that "\[[foo\_bar|Sandbox]]" will show as "foo bar". (although you can't tell that apart from "foo\_bar" easily because it's a hyperlink).
+>
+> i assume that this behavior stems from times when wikilinks and [[ikiwiki/directive]]s were not distinguished by \[[ vs \[[! but by the use of whitespace in directives, so whitespace had to be avoided in wikilinks.
+>
+> --[[chrysn]]