| 1234567891011121314151617181920212223242526272829 | /** * List of lowercase HTML “block” tag names. * * The list, when parsing HTML (flow), results in more relaxed rules (condition * 6). * Because they are known blocks, the HTML-like syntax doesn’t have to be * strictly parsed. * For tag names not in this list, a more strict algorithm (condition 7) is used * to detect whether the HTML-like syntax is seen as HTML (flow) or not. * * This is copied from: * <https://spec.commonmark.org/0.30/#html-blocks>. * * > 👉 **Note**: `search` was added in `CommonMark@0.31`. */export const htmlBlockNames: string[]/** * List of lowercase HTML “raw” tag names. * * The list, when parsing HTML (flow), results in HTML that can include lines * without exiting, until a closing tag also in this list is found (condition * 1). * * This module is copied from: * <https://spec.commonmark.org/0.30/#html-blocks>. * * > 👉 **Note**: `textarea` was added in `CommonMark@0.30`. */export const htmlRawNames: string[]
 |