@adcp/sdk API Reference - v14.0.0-beta.6
    Preparing search index...

    Interface MarkdownAsset

    Markdown-formatted text content following CommonMark specification

    interface MarkdownAsset {
        asset_type: "markdown";
        content: string;
        language?: string;
        markdown_flavor?: MarkdownFlavor;
        allow_raw_html?: boolean;
    }
    Index

    Properties

    asset_type: "markdown"

    Discriminator identifying this as a markdown asset. See /schemas/creative/asset-types for the registry.

    content: string

    Markdown content following CommonMark spec with optional GitHub Flavored Markdown extensions

    language?: string

    Optional language claim for this markdown. In a materialized creative localization variant, localized-creative-asset.json requires this value to use /schemas/core/locale-tag.json and conformance requires exact equality with the enclosing variant locale. General non-localized assets retain the legacy unconstrained string for compatibility.

    markdown_flavor?: MarkdownFlavor
    allow_raw_html?: boolean

    Whether raw HTML blocks are allowed in the markdown. False recommended for security.