TextExtractionOptions.readable constructor
TextExtractionOptions.readable()
Creates TextExtractionOptions for readable text extraction
Implementation
factory TextExtractionOptions.readable() {
return const TextExtractionOptions(
preserveLinks: false,
preserveImages: true,
preserveFormatting: true,
preserveHeadings: true,
preserveLists: true,
preserveParagraphs: true,
preserveTables: true,
preserveLineBreaks: true,
extractMainContentOnly: true,
);
}