]> fred1m.tech Git - papier-crayon.git/blob - source/conf.py
p57, découvrir `pandoc`
[papier-crayon.git] / source / conf.py
1 # Configuration file for the Sphinx documentation builder.
2 #
3 # For the full list of built-in configuration values, see the documentation:
4 # https://www.sphinx-doc.org/en/master/usage/configuration.html
5
6 # -- Project information -----------------------------------------------------
7 # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
9 project = 'papier-crayon'
10 copyright = '2024-2025, M. Le Meur'
11 author = 'M. Le Meur'
12 release = '0.1.7a'
13
14 # -- General configuration ---------------------------------------------------
15 # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
16
17 extensions = ['myst_parser']
18
19 source_suffix = {
20 '.rst': 'restructuredtext',
21 '.txt': 'restructuredtext',
22 '.md': 'markdown',
23 }
24
25
26 templates_path = ['_templates']
27 exclude_patterns = []
28
29 language = 'fr'
30
31 # -- Options for HTML output -------------------------------------------------
32 # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
33
34 html_theme = 'alabaster'
35 html_static_path = ['_static']
36
37 html_theme_options = {
38 'show_relbars': 'True',
39 'admonition_bg': '#dcb',
40 'note_bg': '#fd8',
41 'seealso_bg': '#aec',
42 'danger_bg': '#b55',
43 'error_bg': '#b82',
44 'tip_bg': '#b0f',
45 'hint_bg': '#dad',
46 'important_bg': '#24f',
47 'caution_bg': '#fe6',
48 'attention_bg': '#fd6',
49 'warn_bg': '#fc6',
50 }