pai
    Preparing search index...

    Type Alias MemoryNote

    One note, as saved in memory/<space>/<id>.md.

    type MemoryNote = {
        created: string;
        id: string;
        space: string;
        tags: string[];
        text: string;
        title: string;
    }
    Index
    created: string

    When the note was made, as an ISO 8601 time.

    id: string

    The file name without .md: the time it was made, then a slug of the title.

    space: string

    The notebook the note is in.

    tags: string[]

    Tags to find the note by.

    text: string

    The note's text, in markdown.

    title: string

    The title, or the first line of the text when none was given. Up to 80 characters.