Skip to content

Commit

Permalink
don't escape alphanum chars, it's not consistent with urls
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@242165 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Michele Tomaiuolo committed Sep 4, 2007
1 parent d1ab13b commit 09a2f05
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions Text/Wiki/Creole.php
Expand Up @@ -59,8 +59,6 @@ class Text_Wiki_Creole extends Text_Wiki {
'Tt',
'Trim',
'Break',
'Url',
'Image',
'Raw',
'Box',
'Footnote',
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki/Parse/Creole/Raw.php
Expand Up @@ -32,7 +32,7 @@ class Text_Wiki_Parse_Raw extends Text_Wiki_Parse {
*
*/

var $regex = '/~([^ \n])/';
var $regex = '/~(_|[^ \w\n])/';

/**
*
Expand Down

0 comments on commit 09a2f05

Please sign in to comment.