DOM removals

This commit is contained in:
v 2018-11-28 18:13:16 +03:00
parent cc3c1b1080
commit 8302e7c991

View File

@ -546,20 +546,17 @@ class Article extends ArticleStub {
dom( '#bodyContent' ).replaceWith( content )
// remove comments
dom( '*' ).contents().each( (i, elem) => {
//~ log( 'comment', elem.type )
if ( elem.type === 'comment' ) {
dom( elem ).remove()
}
})
// display content inside <noscript> tags
dom( 'noscript' ).each( (i, elem) => {
let e = dom( elem )
e.replaceWith( e.contents() )
})
// clean up
dom( wiki.pageRemovals ).each( (i, elem) => {
dom( elem ).remove()
})
// modify links
let css = dom( '#layout-css' )
css.attr( 'href', this.pathToTop() + css.attr( 'href' ))
@ -948,10 +945,11 @@ async function processSamplePage ( samplePageUrl, rmdir) {
return dom
}
function loadTemplate () {
async function loadPreRequisites () {
const stubPath = osPath.resolve( module.filename, '../stub.html' )
return fs.readFile ( stubPath )
.then( stub => (wiki.pageTemplate = stub))
wiki.pageTemplate = await fs.readFile ( stubPath, 'utf8' )
const removalsPath = osPath.resolve( module.filename, '../removals.txt' )
wiki.pageRemovals = await fs.readFile ( removalsPath, 'utf8' )
}
async function getSiteInfo () {