UNPKG

270 BJavaScriptView Raw
1/**
2 * Map of all inline node types. Inline nodes can only contain inline or text nodes.
3 * @type {Map}
4 */
5
6module.exports = {
7 HTML: "html",
8 LINK: "link",
9 IMAGE: "image",
10 FOOTNOTE_REF: "footnote-ref",
11 MATH: "math",
12 TEMPLATE: "template",
13 EMOJI: "emoji"
14};