From 5b1b72bafb485ef224cf7e058e96bc1edf09fe20 Mon Sep 17 00:00:00 2001 From: Jared Dillard Date: Sun, 7 Dec 2025 22:45:31 -0800 Subject: [PATCH] Change markdown suffix --- docs/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index de0b623..0ca7a1a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,7 +16,7 @@ project = "sphinx-llms-txt" copyright = "Jared Dillard" author = "Jared Dillard" -llms_txt_uri_template = "{base_url}{docname}.md" +llms_txt_uri_template = "{base_url}{docname}.html.md" llms_txt_code_files = ["+:../../sphinx_llms_txt/*.py"] llms_txt_summary = """ A Sphinx extension that generates a summary llms.txt file,written in Markdown, @@ -25,6 +25,7 @@ and a single combined documentation llms-full.txt file, written in reStructuredT # This doesn't seem to be supported # rst_file_suffix = ".html.rst" +markdown_file_suffix = ".html.md" extlinks = { "ghfile": ("https://github.com/jdillard/sphinx-llms-txt/blob/main/%s", "%s")