diff --git a/src/scripts/process_downloaded_glossary.js b/src/scripts/process_downloaded_glossary.js index c0795bda1..d66f660a6 100644 --- a/src/scripts/process_downloaded_glossary.js +++ b/src/scripts/process_downloaded_glossary.js @@ -80,7 +80,7 @@ const process_glossary = async () => { const downloadedGlossaryDom = new JSDOM(conversionScriptOutputFile); // Trim html header, body, and such out - const trimmed = downloadedGlossaryDom.window.document.querySelector('div#glossary'); + const trimmed = downloadedGlossaryDom.window.document.querySelector('#glossary'); // Trim out H1 const h1 = trimmed.querySelector('h1');