]> sipb.mit.edu Git - ikiwiki.git/commitdiff
more details
authorhttps://brian.may.myopenid.com// <https://brian.may.myopenid.com//@web>
Mon, 24 Nov 2008 03:34:22 +0000 (22:34 -0500)
committerJoey Hess <joey@kitenet.net>
Mon, 24 Nov 2008 03:34:22 +0000 (22:34 -0500)
doc/bugs/links_misparsed_in_CSV_files.mdwn

index 8a137e81c0edf4abcc271817362013814bb4e3f7..169c070e7e1017baf25fdbe70b7d51ef8789558e 100644 (file)
@@ -8,4 +8,10 @@ Update 2008-11-24: The problem only occurs if the CSV data is in an external fil
 
 The problem appears to be the call to htmlize inside genrow. If the data is inline, then wikilinks get expanded before they get here, and are OK. If the data is from an external file, the wikilinks aren't expanded, and htmlize will expand \[[single\_track\_lines]] into \[[single&lt;em&gt;track&lt;/em&gt;lines]].
 
+Oh, wait, I see the problem. IkiWiki::linkify is only called if the external file doesn't exist. If I remove this check and always call IkiWiki::linkify, then the problem is solved.
+
+(this is inside /usr/share/perl5/IkiWiki/Plugin/table.pm).
+
+I am rather confused what this check does, and the fact the comments are very different for CSV and DSV when the code is the same doesn't seem to help.
+
 -- Brian May