Description: configure mkdocs build for Debian systems
 Borrowed heavily from a similar patch for projectile, written by
 Sean Whitton.
 .
 1. set site_dir so that docs end up in /usr/share/doc/python3-guizero/html
 .
 2. unset use_directory_urls so that links are to foo/index.html rather
    than to just foo/, which is better for offline browsing
 .
 3. don't generate installation, development and deployment pages
 .
 4. use bootstrap theme instead of readthedocs theme
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2019-02-10
---
--- a/docs-src/mkdocs.yml
+++ b/docs-src/mkdocs.yml
@@ -1,7 +1,7 @@
 site_name: guizero
+site_dir: html
 pages:
-  - About: about.md
-  - Installation: index.md
+  - About: index.md
   - Using guizero:
       - Getting started: start.md
       - Commands: commands.md
@@ -33,7 +33,6 @@
       - Window: window.md
   - Contributing:
       - Notes: contributing.md
-      - Developing: development.md
-      - Deploying: deployment.md
   - Change log: changelog.md
-theme: readthedocs
+theme_dir: /usr/share/mkdocs/themes/mkdocs_bootstrap
+use_directory_urls: false
