Trilium Backend API
    Preparing search index...
    nextAll: <T extends AnyNode>(
        this: Cheerio<T>,
        selector?: AcceptedFilters<Element>,
    ) => Cheerio<Element>

    Gets all the following siblings of the each selected element, optionally filtered by a selector.

    Type Declaration

    $('.apple').nextAll();
    //=> [<li class="orange">Orange</li>, <li class="pear">Pear</li>]
    $('.apple').nextAll('.orange');
    //=> [<li class="orange">Orange</li>]