diff options
author | mathdesc <mathdesc@web> | 2012-08-18 10:21:54 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-08-18 10:21:54 -0400 |
commit | 41a54aa700ef20825b2a8ea76cdc057dc32825c4 (patch) | |
tree | 59dd7585f13cb16405aaf3387980c7334c1f740c /doc | |
parent | e4e0ee919ec702489479da9f61dfdbea3ba3bdf6 (diff) | |
download | ikiwiki-41a54aa700ef20825b2a8ea76cdc057dc32825c4.tar ikiwiki-41a54aa700ef20825b2a8ea76cdc057dc32825c4.tar.gz |
Sugesstion usgin decode_utf8 instead of escaping them
Diffstat (limited to 'doc')
-rw-r--r-- | doc/plugins/headinganchors/discussion.mdwn | 16 |
1 files changed, 16 insertions, 0 deletions
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: </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]] |