Orca Note Plugin API Documentation
    Preparing search index...

    Type Alias ContentFragment

    Represents a fragment of rich text content within a block. Different fragment types allow for various content formats like text, links, code, etc.

    type ContentFragment = {
        f?: string;
        fa?: Record<string, any>;
        t: string;
        v: any;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional properties can be included based on content type

    Index

    Properties

    Properties

    f?: string

    Optional formatting information

    fa?: Record<string, any>

    Optional formatting arguments

    t: string

    The type of content fragment (e.g., "text", "code", "link")

    v: any

    The value of the content fragment