This commit is contained in:
csh 2024-07-08 16:55:43 +08:00
parent b167501fde
commit 5fe2911608
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ begin
elements := sect_ware.Elements;
for _,element in elements do
begin
if element.LocalName = "p" then self.TransformParagraph(sect_ware, element);
else if element.LocalName = "tbl" then self.TransformTable(sect_ware, element);
if element.LocalName = "p" then self.TransformP(sect_ware, element);
else if element.LocalName = "tbl" then self.TransformTbl(sect_ware, element);
end
end
end;