Update lock
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michel Roux 2022-10-26 12:42:53 +00:00
parent 978c1e9543
commit 8fb24e876d
2 changed files with 11 additions and 12 deletions

View File

@ -18,12 +18,11 @@ const fetchPage = async (url) => {
const title = html.querySelector('h1.entry-title').text const title = html.querySelector('h1.entry-title').text
const content = html.querySelector('div.entry-content') const content = html.querySelector('div.entry-content')
content.querySelectorAll('a').map((c) => c.remove())
content.querySelectorAll('h3').map((c) => c.remove()) for (const el of ['a', 'h3', 'hr', 'iframe', 'script', 'div.tiled-gallery']) {
content.querySelectorAll('hr').map((c) => c.remove()) content.querySelectorAll(el).map((c) => c.remove())
content.querySelectorAll('iframe').map((c) => c.remove()) }
content.querySelectorAll('script').map((c) => c.remove())
content.querySelectorAll('div.tiled-gallery').map((c) => c.remove())
content.querySelectorAll('img').map((c) => { content.querySelectorAll('img').map((c) => {
for (const attr in c.attributes) { for (const attr in c.attributes) {
if (attr !== 'src') { if (attr !== 'src') {

View File

@ -98,9 +98,9 @@ acorn-jsx@^5.3.2:
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
acorn@^8.8.0: acorn@^8.8.0:
version "8.8.0" version "8.8.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
ajv@^6.10.0, ajv@^6.12.4: ajv@^6.10.0, ajv@^6.12.4:
version "6.12.6" version "6.12.6"
@ -734,9 +734,9 @@ hast-util-whitespace@^2.0.0:
integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg== integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==
hastscript@^7.0.0: hastscript@^7.0.0:
version "7.0.2" version "7.1.0"
resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.0.2.tgz#d811fc040817d91923448a28156463b2e40d590a" resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.1.0.tgz#e402ed48f46161cf2f093badbff30583a5c3c315"
integrity sha512-uA8ooUY4ipaBvKcMuPehTAB/YfFLSSzCwFSwT6ltJbocFUKH/GDHLN+tflq7lSRf9H86uOuxOFkh1KgIy3Gg2g== integrity sha512-uBjaTTLN0MkCZxY/R2fWUOcu7FRtUVzKRO5P/RAfgsu3yFiMB1JWCO4AjeVkgHxAira1f2UecHK5WfS9QurlWA==
dependencies: dependencies:
"@types/hast" "^2.0.0" "@types/hast" "^2.0.0"
comma-separated-tokens "^2.0.0" comma-separated-tokens "^2.0.0"