diff --git a/docs/_static/js/cli-page.js b/docs/_static/js/cli-page.js deleted file mode 100644 index 79c86771..00000000 --- a/docs/_static/js/cli-page.js +++ /dev/null @@ -1,25 +0,0 @@ -(function () { - const pageMarker = "pfqnhktptyfdeomqabhq"; - - window.onload = (event) => { - let pTags = document.querySelectorAll("p"); - let findMarker = Array.from(pTags).find( - paragraph => paragraph.textContent.includes(pageMarker) - ); - - // If the marker isn't on the page then this isn't - // the page we're looking for - if (findMarker == null) { - return; - } - - // Remove first casanovo header and page marker - let firstHeader = document.querySelector("#casanovo > h2:first-of-type"); - firstHeader.remove(); - findMarker.remove(); - - // Change second header text content - let secondHeader = document.querySelector("#casanovo > h3:first-of-type"); - secondHeader.textContent = "Casanovo CLI Commands"; - } -})(); \ No newline at end of file diff --git a/docs/cli.rst b/docs/cli.rst index e858ad6c..e8cc0edc 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -8,9 +8,3 @@ For Casanovo installation instructions, see the :doc:`Getting Started