12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- project = 'DragonOS'
- copyright = '2022-2023, DragonOS Community'
- author = 'longjin'
- release = 'dev'
- extensions = ['myst_parser']
- templates_path = ['_templates']
- language = 'zh_CN'
- exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
- source_suffix = ['.rst', '.md']
- html_theme = 'sphinx_rtd_theme'
- html_static_path = ['_static']
- myst_enable_extensions = [
- "amsmath",
- "colon_fence",
- "deflist",
- "dollarmath",
- "fieldlist",
- "html_admonition",
- "html_image",
- "replacements",
- "smartquotes",
- "strikethrough",
- "substitution",
- "tasklist",
- ]
|