scan for bibliography anchors

This commit is contained in:
Dietmar Maurer 2016-10-08 12:49:20 +02:00
parent 835dd63b03
commit a0ba8b4c20

View File

@ -144,6 +144,13 @@ sub scan_adoc_file {
die "implement me" if $blockid =~m/,/;
register_blockid($filename, $blockid, $env_stack->[-1]);
}
# fixme: "anchor:"
# bibliography anchors
if ($line =~ m/\[\[\[([^\]]*)\]\]\]/) {
my $blockid = $1;
die "implement me" if $blockid =~m/,/;
register_blockid($filename, $blockid, $env_stack->[-1]);
}
}
}