πŸ“„ index.d.ts
/home/palash/git/site/node_modules/micromark-util-html-tag-name/index.d.ts
Language: ts β€’ Lines: 30
/**
 * 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[];
//# sourceMappingURL=index.d.ts.map