Skip to content

Commit

Permalink
Element changed from a div to a section
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymcmackin committed Jul 25, 2024
1 parent 24bf2ea commit f6050b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/process_downloaded_glossary.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit f6050b5

Please sign in to comment.