From 41a54aa700ef20825b2a8ea76cdc057dc32825c4 Mon Sep 17 00:00:00 2001 From: mathdesc Date: Sat, 18 Aug 2012 10:21:54 -0400 Subject: [PATCH] Sugesstion usgin decode_utf8 instead of escaping them --- doc/plugins/headinganchors/discussion.mdwn | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/plugins/headinganchors/discussion.mdwn b/doc/plugins/headinganchors/discussion.mdwn index 151af8d92..eaf111f4e 100644 --- a/doc/plugins/headinganchors/discussion.mdwn +++ b/doc/plugins/headinganchors/discussion.mdwn @@ -31,3 +31,19 @@ A patch to make it more like MediaWiki: --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]] -- 2.44.0