Skip to content

Latest commit

 

History

History
49 lines (26 loc) · 1.21 KB

HTMLTableParserMode.md

File metadata and controls

49 lines (26 loc) · 1.21 KB

@felisdiligens/md-table-tools / Exports / HTMLTableParserMode

Enumeration: HTMLTableParserMode

changes the behavior of HTMLTableParser

Table of contents

Enumeration Members

Enumeration Members

ConvertHTMLElements

ConvertHTMLElements = 2

uses the HTML code (Cheerio.html()) and converts to Markdown using Turndown if possible (default)

Defined in

tables/htmlTable.ts:126


PreserveHTMLElements

PreserveHTMLElements = 1

uses the HTML code (Cheerio.html()) without any converting

Defined in

tables/htmlTable.ts:124


StripHTMLElements

StripHTMLElements = 0

uses only text (Cheerio.text())

Defined in

tables/htmlTable.ts:122