-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extension setup and maths & settings overrides
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
"""Sphinx extensions for performant PEP processing""" | ||
|
||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
from sphinx.environment import default_settings | ||
from docutils.writers.html5_polyglot import HTMLTranslator | ||
|
||
from pep_sphinx_extensions.pep_processor.html import pep_html_translator | ||
from pep_sphinx_extensions.pep_processor.parsing import pep_parser | ||
from pep_sphinx_extensions.pep_processor.parsing import pep_role | ||
|
||
if TYPE_CHECKING: | ||
from sphinx.application import Sphinx | ||
|
||
# Monkeypatch sphinx.environment.default_settings as Sphinx doesn't allow custom settings or Readers | ||
default_settings |= { | ||
"pep_references": True, | ||
"rfc_references": True, | ||
"pep_base_url": "", | ||
"pep_file_url_template": "pep-%04d.html", | ||
"_disable_config": True, # disable using docutils.conf whilst running both PEP generators | ||
} | ||
|
||
|
||
def _depart_maths(): | ||
pass # No-op callable for the type checker | ||
|
||
|
||
def setup(app: Sphinx) -> dict[str, bool]: | ||
"""Initialize Sphinx extension.""" | ||
|
||
# Register plugin logic | ||
app.add_source_parser(pep_parser.PEPParser) # Add PEP transforms | ||
app.add_role("pep", pep_role.PEPRole(), override=True) # Transform PEP references to links | ||
app.set_translator("html", pep_html_translator.PEPTranslator) # Docutils Node Visitor overrides | ||
|
||
# Mathematics rendering | ||
inline_maths = HTMLTranslator.visit_math, _depart_maths | ||
block_maths = HTMLTranslator.visit_math_block, _depart_maths | ||
app.add_html_math_renderer("maths_to_html", inline_maths, block_maths) # Render maths to HTML | ||
|
||
# Parallel safety: https://www.sphinx-doc.org/en/master/extdev/index.html#extension-metadata | ||
return {"parallel_read_safe": True, "parallel_write_safe": True} |