diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-10-11 18:48:47 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-10-11 18:48:47 +0200 |
commit | 24b0ff2a3a4fa0f9c845cf20b6f0a917c48b9a94 (patch) | |
tree | 8cd85f3ef83962ce0f517468815a0e916abc212f /inc/parser | |
parent | e16eccb70475e6d275f573424aa0f0d9cb757d04 (diff) | |
download | rpg-24b0ff2a3a4fa0f9c845cf20b6f0a917c48b9a94.tar.gz rpg-24b0ff2a3a4fa0f9c845cf20b6f0a917c48b9a94.tar.bz2 |
Another fix for emphasis parsing FS#1468
Hopefully doesn't break anything
darcs-hash:20081011164847-7ad00-9c0873e505e1c3b9dad2477d3ccfaf9c75d95839.gz
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php index 38a59e256..37da712cc 100644 --- a/inc/parser/parser.php +++ b/inc/parser/parser.php @@ -310,7 +310,7 @@ class Doku_Parser_Mode_formatting extends Doku_Parser_Mode { ), 'emphasis'=> array ( - 'entry'=>'//(?=[^\x00]*[^:]//)', //hack for bug #384 + 'entry'=>'//(?=[^\x00]*[^:])', //hack for bugs #384 #763 #1468 'exit'=>'//', 'sort'=>80 ), |