-
Notifications
You must be signed in to change notification settings - Fork 90
/
mkdocs.yml
46 lines (40 loc) · 1.21 KB
/
mkdocs.yml
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
37
38
39
40
41
42
43
44
45
46
site_name: MPB Documentation
site_author: MPB Developers
repo_url: https://github.com/NanoComp/mpb/
edit_uri: edit/master/doc/docs
use_directory_urls: True
docs_dir: 'doc/docs'
site_dir: 'doc/site'
theme:
name: readthedocs
markdown_extensions:
- wikilinks
- toc:
title: Table of Contents
permalink: "#"
- attr_list
- fenced_code
- md_in_html
- mdx_math:
enable_dollar_delimiter: True
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML'
- 'js/mathjaxhelper.js'
- 'js/extra.js'
nav:
- Manual: 'index.md'
- Introduction: 'Introduction.md'
- Download: 'Download.md'
- Installation: 'Installation.md'
- Developer Information: 'Developer_Information.md'
- Acknowledgements: 'Acknowledgements.md'
- License and Copyright: 'License_and_Copyright.md'
- Python Interface:
- User Interface: 'Python_User_Interface.md'
- Tutorial: 'Python_Tutorial.md'
- Data Analysis: 'Python_Data_Analysis_Tutorial.md'
- Scheme Interface:
- User Interface: 'Scheme_User_Interface.md'
- Tutorial: 'Scheme_Tutorial.md'
- Data Analysis: 'Data_Analysis_Tutorial.md'
- Guile and Scheme Information: 'Guile_and_Scheme_Information.md'