There was an error while loading. Please reload this page.
1 parent 6800037 commit 1aa1da4Copy full SHA for 1aa1da4
1 file changed
packages/etl/src/index.js
@@ -121,9 +121,7 @@ async function transformToHtml(filePath) {
121
122
const $ = cheerio.load(result.principalResult);
123
124
- // GN selector looks wrong, it should be 'body div:not(#facsimile-images):not(#handnote)'
125
- // confirmed by inclusion of those two divs in the .json output
126
- const divs = $("body > div:not(#facsimile-images #handnote)")
+ const divs = $("body > div:not(#facsimile-images):not(#handnote)")
127
.map((i, div) => ({
128
id: $(div).attr("id"),
129
cls: $(div).attr("class"),
0 commit comments