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 ce63d6c commit d4fb0e2Copy full SHA for d4fb0e2
src/sphinx_codeautolink/__init__.py
@@ -15,6 +15,8 @@ def setup(app: Sphinx):
15
"""Set up extension, directives and events."""
16
state = SphinxCodeAutoLink()
17
app.setup_extension("sphinx.ext.autodoc")
18
+ css_file = Path(__file__).parent / "static" / "sphinx-codeautolink.css"
19
+ app.add_css_file(str(css_file))
20
app.connect("build-finished", _copy_styles)
21
app.add_config_value(
22
"codeautolink_autodoc_inject", default=False, rebuild="html", types=[bool]
0 commit comments