1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: configure mkdocs build for Debian systems
Based on similar patches for projectile and python-markdown
.
1. unset use_directory_urls so that links are to foo/index.html rather
than to just foo/, which is better for offline browsing
.
2. don't generate installation, development and deployment pages
.
3. use nature theme instead of removed cinder theme
.
Author: Nick Morrott <nickm@debian.org>
Forwarded: not-needed
Last-Update: 2022-02-06
---
--- a/docs-src/mkdocs.yml
+++ b/docs-src/mkdocs.yml
@@ -1,10 +1,9 @@
site_name: guizero
theme:
- name: null
- custom_dir: 'cinder'
+ name: nature
+use_directory_urls: false
nav:
- About: about.md
- - Installation: index.md
- Using guizero:
- Getting started: start.md
- Using Widgets: usingwidgets.md
@@ -41,6 +40,4 @@
- Book : book.md
- Contributing:
- Notes: contributing.md
- - Developing: development.md
- - Deploying: deployment.md
- Change log: changelog.md
|