Trilium Backend API
    Preparing search index...
    • Sniffs the encoding of a buffer, then creates a querying function bound to a document created from the buffer.

      Parameters

      • buffer: Buffer

        The buffer to sniff the encoding of.

      • Optionaloptions: DecodeStreamOptions

        The options to pass to Cheerio.

      Returns CheerioAPI

      The loaded document.

      import * as cheerio from 'cheerio';

      const buffer = fs.readFileSync('index.html');
      const $ = cheerio.loadBuffer(buffer);