Hi, is it possible to setup HTML export in FineReader Engine 12 to get output without "<input>" tags?
My current setup is:
FREngine.IHTMLExportParams htmlExportParams = engine.CreateHTMLExportParams(); htmlExportParams.EncodingType = FREngine.TextEncodingTypeEnum.TET_UTF8;
htmlExportParams.WritePictures = false;
htmlExportParams.UseCss = true;
htmlExportParams.HTMLFormatMode = FREngine.HTMLFormatModeEnum.HFM_Format50;
htmlExportParams.HTMLSynthesisMode = FREngine.HTMLSynthesisModeEnum.HSM_ExactCopy;
frDocument.ExportToMemory(memoryWriter, FREngine.FileExportFormatEnum.FEF_HTMLUnicodeDefaults, htmlExportParams);