UNPKG

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