sesaparcours
    Preparing search index...

    Interface RichEltOptions<Tag>

    interface RichEltOptions<Tag extends ContentTagsAllowed> {
        attrs?: Record<string, string>;
        content?: string;
        contentOptions?: Record<string, RichEltOptions<ContentTagsAllowed>>;
        props?: RecursivePartial<Elt<Tag>>;
        tag: Tag;
    }

    Type Parameters

    Index

    Properties

    attrs?: Record<string, string>
    content?: string

    Le contenu, qui peut contenir du ${foo} pour l’enrichir

    contentOptions?: Record<string, RichEltOptions<ContentTagsAllowed>>

    Chaque clé foo correspond aux options pour ${foo} trouvé dans content

    tag: Tag