1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Kathara Sasikumar <katharasasikumar007@gmail.com>
Date: Mon, 12 Aug 2024 19:17:48 +0530
Subject: docs: Don't build directory URLs
The upstream configuration for the HTML based documentation is targeted
to get published through a web server but not through a simple directory
structure.
Let mkdocs create *.html files for the various topics and sites.
Forwarded: not-needed
---
mkdocs.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mkdocs.yml b/mkdocs.yml
index eb8f801..bcaf3c8 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -109,3 +109,5 @@ extra:
# default:
# - latest
# - development
+
+use_directory_urls: false
|