diff options
author | Jonas Smedegaard <dr@jones.dk> | 2008-10-23 13:25:30 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2013-10-13 00:47:51 +0200 |
commit | b1bf96edb3c92dda0c100c63e740d2ab395eb8a2 (patch) | |
tree | 32b99cccfa5e5d09bde9a935ce5c48d897f613ab /Locale | |
parent | e8f437990f272681c3bd35ab8303e5de4f7653d7 (diff) |
Revert "Drop superfluous /ms regex extensions."
It is indeed needed for templates.
This reverts commit e35add35a02e84a99b83a4090870ac634e344ca6.
Diffstat (limited to 'Locale')
-rw-r--r-- | Locale/Po4a/Text.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Locale/Po4a/Text.pm b/Locale/Po4a/Text.pm index 0caec0b..32f9dec 100644 --- a/Locale/Po4a/Text.pm +++ b/Locale/Po4a/Text.pm @@ -242,12 +242,12 @@ sub parse { if ($markdown) { # Some Markdown markup can (or might) not survive wrapping $wrapped_mode = 0 if ( - $paragraph =~ /^>/ # blockquote - or $paragraph =~ /^( {8}|\t)/ # monospaced - or $paragraph =~ /^\$(\S+[{}]\S*\s*)+/ # Xapian macro - or $paragraph =~ /<(?![a-z]+[:@])/ # maybe html (tags but not wiki <URI>) - or $paragraph =~ /^[^<]+>/ # maybe html (tag with vertical space) - or $paragraph =~ /\[\[\!\S[^\]]+$/ # macro begin + $paragraph =~ /^>/ms # blockquote + or $paragraph =~ /^( {8}|\t)/ms # monospaced + or $paragraph =~ /^\$(\S+[{}]\S*\s*)+/ms # Xapian macro + or $paragraph =~ /<(?![a-z]+[:@])/ms # maybe html (tags but not wiki <URI>) + or $paragraph =~ /^[^<]+>/ms # maybe html (tag with vertical space) + or $paragraph =~ /\[\[\!\S[^\]]+$/ms # macro begin ); } if ($end_of_paragraph) { |