Skip to content

Commit

Permalink
Added a bugfix in docutils 0.11 -- docs will now build properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jul 31, 2013
1 parent e888a9b commit a3a59a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/_ext/djangodocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,15 @@ class DjangoHTMLTranslator(SmartyPantsHTMLTranslator):

# Don't use border=1, which docutils does by default.
def visit_table(self, node):
self.context.append(self.compact_p)
self.compact_p = True
self._table_row_index = 0 # Needed by Sphinx
self.body.append(self.starttag(node, 'table', CLASS='docutils'))

def depart_table(self, node):
self.compact_p = self.context.pop()
self.body.append('</table>\n')

# <big>? Really?
def visit_desc_parameterlist(self, node):
self.body.append('(')
Expand Down

0 comments on commit a3a59a3

Please sign in to comment.