wdpr
    Preparing search index...

    Interface CodeBlockData

    Data for a [[code]] block.

    interface CodeBlockData {
        contents: string;
        language: string | null;
        name: string | null;
    }
    Index

    Properties

    contents: string

    Raw source text inside the code block

    language: string | null

    Language identifier for syntax highlighting, or null

    name: string | null

    Optional name/label for the code block