laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
32 lines (31 loc) • 713 B
JavaScript
"use client";
import { convert as e } from "../../unist-util-is/lib/index.js";
const n = (
/** @type {(node?: unknown) => node is Exclude<PhrasingContent, Html>} */
e([
"break",
"delete",
"emphasis",
// To do: next major: removed since footnotes were added to GFM.
"footnote",
"footnoteReference",
"image",
"imageReference",
"inlineCode",
// Enabled by `mdast-util-math`:
"inlineMath",
"link",
"linkReference",
// Enabled by `mdast-util-mdx`:
"mdxJsxTextElement",
// Enabled by `mdast-util-mdx`:
"mdxTextExpression",
"strong",
"text",
// Enabled by `mdast-util-directive`:
"textDirective"
])
);
export {
n as phrasing
};