diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-03-23 15:04:17 +0100 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-03-23 15:04:17 +0100 |
commit | ab81c3dc8f415b013374c32b7328bc2bc9dd2758 (patch) | |
tree | 6f51bd24616e3c2c44bb947adac1fcb6b85e73d1 /conf.py | |
parent | 7b329c6143bbb615366c67db16ca8c6ae57e5448 (diff) | |
download | club1-docs-ab81c3dc8f415b013374c32b7328bc2bc9dd2758.tar.gz club1-docs-ab81c3dc8f415b013374c32b7328bc2bc9dd2758.zip |
very first add of club1 docs
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -17,7 +17,7 @@ # -- Project information ----------------------------------------------------- -project = 'Documentation CLUB1' +project = 'Docs CLUB1' copyright = '2022, Nicolas PEUGNET' author = 'Nicolas PEUGNET' @@ -28,6 +28,7 @@ author = 'Nicolas PEUGNET' # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + 'myst_parser', ] # Add any paths that contain templates here, relative to this directory. @@ -43,7 +44,12 @@ language = 'fr' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = [ + '_build', + 'Thumbs.db', + '.DS_Store', + 'README.*', +] # -- Options for HTML output ------------------------------------------------- |