RVHTMLImporter
Posted: Tue Apr 13, 2021 7:59 pm
Greetings,
In the RVHTMLIMporter I am having trouble having FCurContinar.SetListProperties(FParser) working with a type different than the <ol>
<li type="a"> does not seem to work. Is this fully enabled or am I missing something?
It only seems to use the <ol> list type.
In the RVHTMLIMporter I am having trouble having FCurContinar.SetListProperties(FParser) working with a type different than the <ol>
<li type="a"> does not seem to work. Is this fully enabled or am I missing something?
It only seems to use the <ol> list type.
Code: Select all
else if (s = 'li') then
begin
WriteTSCR;
FinishBlockFont;
FCurBR := False;
FCurContainer.SetListProperties(FParser);
StartBlockFont;
FCurParaStyle := -1;
end
else if (s = '/li') then
begin
//Do nothing not needed
end