projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4e0ee9
)
Sugesstion usgin decode_utf8 instead of escaping them
author
mathdesc
<mathdesc@web>
Sat, 18 Aug 2012 14:21:54 +0000
(10:21 -0400)
committer
admin
<admin@branchable.com>
Sat, 18 Aug 2012 14:21:54 +0000
(10:21 -0400)
doc/plugins/headinganchors/discussion.mdwn
patch
|
blob
|
history
diff --git
a/doc/plugins/headinganchors/discussion.mdwn
b/doc/plugins/headinganchors/discussion.mdwn
index 151af8d92b31b827836b4d12a7063ca440654162..eaf111f4ee1162a49ed4f1b4de4d4135d51ae9ce 100644
(file)
--- 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]]