Commit 80157573 authored by Serafino Pirronitto's avatar Serafino Pirronitto
Browse files

avoid strange cases where the loop could parse things like the navbar. Now it...

avoid strange cases where the loop could parse things like the navbar. Now it always parses only the real content
parent a0735776
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -548,7 +548,7 @@ if __name__ == "__main__":
    

        #construct doc
        for tag in soup.body.children:
        for tag in soup.find(id="editor").children:
            handle_tag(tag)