In lists, if there is a Li command remove it. This fixes markup for

uath(4).

MFC after:	3 days
Reported by:	Warren Block <wblock at wonkity.com>
This commit is contained in:
simon 2009-10-04 16:30:33 +00:00
parent 170760d585
commit a7b48c5ecb

View File

@ -252,6 +252,10 @@ sub parse {
$txt =~ s/ Ta /\t/g;
$txt =~ s/([^\t]+)\t.*/$1/;
}
# Remove Li commands
$txt =~ s/^Li //g;
parabuf_addline(\%mdocvars, normalize($txt));
} elsif (/^Bl/) {
$mdocvars{isin_list} = 1;