mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
17 lines
369 B
Python
17 lines
369 B
Python
from sphinx.writers.html import HTMLTranslator
|
|
|
|
project = 'test'
|
|
|
|
|
|
class ConfHTMLTranslator(HTMLTranslator):
|
|
depart_with_node = 0
|
|
|
|
def depart_admonition(self, node=None):
|
|
if node is not None:
|
|
self.depart_with_node += 1
|
|
HTMLTranslator.depart_admonition(self, node)
|
|
|
|
|
|
def setup(app):
|
|
app.set_translator('html', ConfHTMLTranslator)
|