Browse Source

* warning on macro

master
Zubrikhin Alexey 9 years ago
parent
commit
2c1c65e7ad
  1. 3
      lib/Text/Dokuwiki/Parser.pm

3
lib/Text/Dokuwiki/Parser.pm

@ -267,7 +267,8 @@ sub parse {
# macro
if ($line =~ m/~~NO(TOC|CACHE)~~/) {
next; # ignore
warn "ignored macro `$line` at line $linenum\n";
next;
} elsif ($line =~ m/^\s?(={2,6}) (.+) \g{1}\s*/o) {
# header
my $level = $1 =~ tr/=/=/;

Loading…
Cancel
Save