]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/plugins/headinganchors/discussion.mdwn
Sugesstion usgin decode_utf8 instead of escaping them
[ikiwiki.git] / doc / plugins / headinganchors / discussion.mdwn
index 151af8d92b31b827836b4d12a7063ca440654162..eaf111f4ee1162a49ed4f1b4de4d4135d51ae9ce 100644 (file)
@@ -31,3 +31,19 @@ A patch to make it more like MediaWiki:
  </pre>
 
 --Changaco
+
+----
+
+I think using this below would let the source html clear for the browser
+without changing the render:
+
+        #use URI::Escape
+        .
+        .
+
+        #$str = uri_escape_utf8($str);
+        $str = Encode::decode_utf8($str);
+        #$str =~ s/%/./g;
+
+Don't you think ?
+[[mathdesc]]