markmv - v1.39.2
    Preparing search index...

    Interface TreeDirectoryNode

    A directory node in the rendered tree.

    Directories always sort before files, each group alphabetically by codepoint order so the rendering is deterministic across machines and locales.

    interface TreeDirectoryNode {
        name: string;
        path: string;
        directories: TreeDirectoryNode[];
        files: TreeFileNode[];
        truncated: boolean;
    }
    Index
    name: string

    Directory name; empty string for the scan root

    path: string

    Path relative to the scan root, with forward slashes; empty string for the root

    directories: TreeDirectoryNode[]

    Child directories, sorted alphabetically

    files: TreeFileNode[]

    Markdown files directly inside this directory, sorted alphabetically

    truncated: boolean

    Whether max-depth cut off this directory's children from the rendering