@umbraco-cms/backoffice
    Preparing search index...

    Interface ParsedBlock

    Utility for parsing indented markdown blocks with hierarchical nesting.

    This utility handles the complex logic of parsing markdown blocks that can contain nested content based on indentation levels, maintaining proper hierarchical structure for lists, task lists, and other indented block types.

    interface ParsedBlock {
        indentLevel: number;
        mainContent: string;
        nestedContent?: string;
        nestedTokens?: any[];
        raw: string;
        type: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    indentLevel: number
    mainContent: string
    nestedContent?: string
    nestedTokens?: any[]
    raw: string
    type: string