Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
add missing handlers for RST builder
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Aug 11, 2017
1 parent 16678f9 commit e9434aa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pyquickhelper/sphinxext/sphinx_rst_builder.py
Expand Up @@ -1059,8 +1059,15 @@ def visit_bigger_node(self, node):
def depart_bigger_node(self, node):
self.add_text('`')

def visit_issue_node(self, node):
self.add_text(':issue:`')

def depart_issue_node(self, node):
self.add_text('`')

def unknown_visit(self, node):
raise NotImplementedError('Unknown node: ' + node.__class__.__name__)
raise NotImplementedError(
"Unknown node: '{0}'".format(node.__class__.__name__))


def setup(app):
Expand Down

0 comments on commit e9434aa

Please sign in to comment.