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 info 7 8project = "Sphinx Docs Test" 9 10extensions = [ 11 "myst_parser", 12] 13myst_enable_extensions = [ 14 "colon_fence", 15] 16