summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
Diffstat (limited to 'perl')
-rw-r--r--perl/Locale/Po4a/Text.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl/Locale/Po4a/Text.pm b/perl/Locale/Po4a/Text.pm
index 77a5cbe..eb8ded9 100644
--- a/perl/Locale/Po4a/Text.pm
+++ b/perl/Locale/Po4a/Text.pm
@@ -175,11 +175,11 @@ sub parse {
$paragraph="";
$wrapped_mode = 1;
} elsif ($markdown and
- ( $line =~ m/^#/)) {
- # Found Markdown headline
- $wrapped_mode = 0;
- $paragraph .= $line."\n";
+ ( $line =~ /^#/ # headline
+ or $line =~ /^\s*\[\[\!\S[^\]]*\]\]\s*$/)) { # sole macro
+ # Found Markdown markup that should be preserved as a single line
do_paragraph($self,$paragraph,$wrapped_mode);
+ do_paragraph($self,$line."\n",0);
$paragraph="";
$wrapped_mode = 1;
} elsif ($markdown and