Strip empty paragraphs from works on Archive of Our Own
< Відгуки до AO3: strip empty paragraphs
Bug: script removes inline images from fics.
Edit: I had a fix here but I know jack about Javascript so it only fixed half the problem. Whoops!
Possible actual fix: replace line 14 with if (paragraphs[i].textContent.trim() == "" & paragraphs[i].innerHTML.search("img")==-1) {
if (paragraphs[i].textContent.trim() == "" & paragraphs[i].innerHTML.search("img")==-1) {
Sign in to post a reply.
Bug: script removes inline images from fics.
Edit: I had a fix here but I know jack about Javascript so it only fixed half the problem. Whoops!
Possible actual fix: replace line 14 with
if (paragraphs[i].textContent.trim() == "" & paragraphs[i].innerHTML.search("img")==-1) {