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 L. B. Nielsen 2009-10-04 16:30:33 +00:00
parent 45c6072249
commit a7835d5578
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197747

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;