KC's Workspace
    Preparing search index...
    interface HtmlTagDescriptor {
        attrs?: Record<string, string | boolean | undefined>;
        children?: string | HtmlTagDescriptor[];
        injectTo?: "body" | "head" | "head-prepend" | "body-prepend";
        tag: string;
    }
    Index
    attrs?: Record<string, string | boolean | undefined>

    attribute values will be escaped automatically if needed

    children?: string | HtmlTagDescriptor[]
    injectTo?: "body" | "head" | "head-prepend" | "body-prepend"

    default: 'head-prepend'

    tag: string