function removeSearchItemWithoutTitle()

in source/_static/js/custom.js [36:41]


  function removeSearchItemWithoutTitle(searchItem) {
    const linkElement = searchItem.getElementsByTagName("a")[0];
    if (linkElement.textContent.trim() == "<no title>") {
      searchItem.remove();
    }
  }