We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad1e5d commit 2dea6e8Copy full SHA for 2dea6e8
lib/github/commands/rest2html
@@ -66,8 +66,8 @@ class GitHubHTMLTranslator(HTMLTranslator):
66
# see also: http://bit.ly/1exfq2h (warning! sourceforge link.)
67
def depart_document(self, node):
68
HTMLTranslator.depart_document(self, node)
69
- self.html_body.pop(0)
70
- self.html_body.pop()
+ self.html_body.pop(0) # pop the starting <div> off
+ self.html_body.pop() # pop the ending </div> off
71
72
# technique for visiting sections, without generating additional divs
73
# see also: http://bit.ly/NHtyRx
0 commit comments