From 2514efc5a4105a5a8a5a6b92db484feaa3052aa4 Mon Sep 17 00:00:00 2001 From: Fred LE MEUR Date: Fri, 19 Jan 2024 16:57:03 +0100 Subject: [PATCH 1/1] Prise en charge du format "Markdown" voir https://www.sphinx-doc.org/en/master/usage/markdown.html#markdown --- source/conf.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index bcb4c4d..f36d5e6 100644 --- a/source/conf.py +++ b/source/conf.py @@ -14,7 +14,14 @@ release = '0.1.3' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = [] +extensions = ['myst_parser'] + +source_suffix = { + '.rst': 'restructuredtext', + '.txt': 'restructuredtext', + '.md': 'markdown', +} + templates_path = ['_templates'] exclude_patterns = [] -- 2.39.5