fish-shell/doc_src/python_docs_theme/__init__.py

12 lines
239 B
Python
Raw Normal View History

import os
def setup(app):
current_dir = os.path.abspath(os.path.dirname(__file__))
2020-11-22 21:39:48 +08:00
app.add_html_theme("python_docs_theme", current_dir)
return {
2020-11-22 21:39:48 +08:00
"parallel_read_safe": True,
"parallel_write_safe": True,
}