⚠️The latest release refactored our HTML, so double-check your custom CSS rules!⚠️

xyzstyle 源代码

"""Sphinx demo."""
from pathlib import Path
import sys

if sys.platform == 'win32':
    import asyncio
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

__version__ = '0.0.7'
__version_full__ = __version__


[文档] def get_html_theme_path(): """ Return path to Sphinx templates folder. """ parent = Path(__file__).parent.resolve() theme_path = parent / "themes" / "xyzstyle" return theme_path
[文档] def get_html_template_path(): theme_dir = get_html_theme_path() return theme_dir/"_templates"
[文档] def update_context(app, pagename, templatename, context, doctree): context["xyzstyle_version"] = __version_full__
[文档] def setup(app): theme_dir = get_html_theme_path() app.add_html_theme("xyzstyle", str(theme_dir)) app.connect("html-page-context", update_context) template_path = get_html_template_path() app.config.templates_path.append(str(template_path)) return { "version": __version_full__, "parallel_read_safe": True, "parallel_write_safe": True, }