summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-10-18 16:03:33 +0200
committerJonas Smedegaard <dr@jones.dk>2011-01-30 18:06:44 +0100
commitab574cbf5fe72e48a619d676782377aed3f8cf4c (patch)
tree6d4d0bbde2667999156c68784b7eadad509a73d7
parent9ea0f29694c4f75b64a51d67d3af11e7baa1ff0e (diff)
Fix preserve forced newline in po4a Text module.
-rw-r--r--Locale/Po4a/Text.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Locale/Po4a/Text.pm b/Locale/Po4a/Text.pm
index 8f703c8..bbb78af 100644
--- a/Locale/Po4a/Text.pm
+++ b/Locale/Po4a/Text.pm
@@ -651,6 +651,7 @@ sub parse {
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 # explicit newline
or $paragraph =~ /\[\[\!\S[^\]]+$/ms # macro begin
);
}