From 0945f60bd61297a33c6c1b124db70e03b7d818cb Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 17 Jul 2023 16:43:42 -0700 Subject: [PATCH] source_suffix includes .md, refs #7 --- docs/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 587ed19..019d32f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,8 +39,7 @@ templates_path = ["_templates"] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # -# source_suffix = ['.rst', '.md'] -source_suffix = ".rst" +source_suffix = ['.rst', '.md'] # The master toctree document. master_doc = "index"