Markup placeholders can span ranges of other pattern elements, or represent other inline elements.

The name identifies the markup part, which will be included in the result along with any options.

When formatted to string, all markup will format as an empty string. To use markup, format to parts and post-process the formatted results.

interface Markup {
    attributes?: Attributes;
    kind: "open" | "close" | "standalone";
    name: string;
    options?: Options;
    type: "markup";
}

Properties

attributes?: Attributes
kind: "open" | "close" | "standalone"
name: string
options?: Options
type: "markup"