Trilium Frontend API
    Preparing search index...

    Interface DownloadCSV

    interface DownloadCSV {
        bom?: boolean;
        delimiter?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    bom?: boolean

    If you need the output CSV to include a byte order mark (BOM) to ensure that output with UTF-8 characters can be correctly interpreted across different applications, you should set the bom option to true.

    delimiter?: string

    By default CSV files are created using a comma (,) delimiter. If you need to change this for any reason the you can pass the options object with a delimiter property to the download function which will then use this delimiter instead of the comma.