s9ymarkup: drops \%
Posted: Mon Jan 22, 2007 4:04 pm
I've got a post with a path like c:\Users\%username%
With enabled s9ymarkup it will be rendered to:
c:\Users%username%
Without it's correctly rendered to:
c:\Users\%username%
The following line in serendipity_event_s9ymarkup.php causes this:
No fix yet because I don't want to analyse the regexp 
With enabled s9ymarkup it will be rendered to:
c:\Users%username%
Without it's correctly rendered to:
c:\Users\%username%
The following line in serendipity_event_s9ymarkup.php causes this:
Code: Select all
$text = preg_replace('/([\\\])([*#_|^@%])/', '\2', $text);