diff --git a/www/js/app.js b/www/js/app.js index a402e99e..9e866033 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -1584,7 +1584,7 @@ define(['jquery', 'zimArchiveLoader', 'util', 'uiUtil', 'cookies', 'q', 'module' //Some documents (e.g. Ray Charles Index) can't be scrolled to the very end, as some content remains benath the footer //so add some whitespace at the end of the document - htmlArticle = htmlArticle.replace(/(dditional terms may apply for the media files[^<]+<\/div>\s*)/i, "$1\r\n

 

 

 

 

\r\n"); + htmlArticle = htmlArticle.replace(/(dditional terms may apply for the media files[^<]+<\/div>\s*)/i, "$1\r\n

 

 

 

 

 

\r\n"); //@TODO - remove this when issue fixed: VERY DIRTY PATCH FOR HTML IN PAGE TITLES on Wikivoyage htmlArticle = htmlArticle.replace(/<a href[^"]+"\/wiki\/([^"]+)[^<]+>([^<]+)<\/a>/ig, "$2"); @@ -1602,6 +1602,13 @@ define(['jquery', 'zimArchiveLoader', 'util', 'uiUtil', 'cookies', 'q', 'module' htmlArticle = htmlArticle.replace(/]+>[^/]*?User:Popo[^<]+<\/h1>\s*/i, ""); htmlArticle = htmlArticle.replace(/]+>[^/]*?User:Popo[^<]+<\/span>\s*/i, ""); + //Put misplaced hatnote header back in its correct position @TODO remove this when fixed in mw-offliner + var hatnote = htmlArticle.match(/]+\bhatnote\b[^>]+>Not to be confused with[\s\S]+?<\/div>\s*/i); + if (hatnote && hatnote.length) { + htmlArticle = htmlArticle.replace(hatnote, ""); + htmlArticle = htmlArticle.replace(/(<\/h1>\s*)/i, "$1" + hatnote); + } + //TESTING - find out whether document contains MathSVGs //var containsMathSVG = /\.svg\s*['"][^>]+mwe-math-fallback-image|mwe-math-fallback-image[^>]+\.svg\s*['"]/i.test(htmlArticle); //Version below will match any type of fallback image so long as there is an alt string