aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/links_misparsed_in_CSV_files.mdwn
diff options
context:
space:
mode:
authorhttps://brian.may.myopenid.com// <https://brian.may.myopenid.com//@web>2008-11-23 22:34:22 -0500
committerJoey Hess <joey@kitenet.net>2008-11-23 22:34:22 -0500
commit1fe1d1de1c1a16d92793d9b6c66154c040465937 (patch)
tree8a674603cf7fb41375e996269634cb47b98844f7 /doc/bugs/links_misparsed_in_CSV_files.mdwn
parentc807d043aac28502e14becf3b126793d7a5ee20d (diff)
downloadikiwiki-1fe1d1de1c1a16d92793d9b6c66154c040465937.tar
ikiwiki-1fe1d1de1c1a16d92793d9b6c66154c040465937.tar.gz
more details
Diffstat (limited to 'doc/bugs/links_misparsed_in_CSV_files.mdwn')
-rw-r--r--doc/bugs/links_misparsed_in_CSV_files.mdwn6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/bugs/links_misparsed_in_CSV_files.mdwn b/doc/bugs/links_misparsed_in_CSV_files.mdwn
index 8a137e81c..169c070e7 100644
--- a/doc/bugs/links_misparsed_in_CSV_files.mdwn
+++ b/doc/bugs/links_misparsed_in_CSV_files.mdwn
@@ -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