-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
53 lines (49 loc) · 1.19 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
47
48
49
50
51
52
53
site_name: WMF
site_url: https://phpoffice.github.io/WMF
repo_url: https://github.com/PHPOffice/WMF
repo_name: PHPOffice/WMF
edit_uri: edit/master/docs/
## Theme
theme:
name: material
palette:
primary: grey
features:
- search.highlight
- search.suggest
## Plugins
plugins:
- search
## Config
extra:
generator: false
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
markdown_extensions:
## Syntax highlighting
- pymdownx.highlight
- pymdownx.superfences
## Support for emojis
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
## Support for call-outs
- admonition
- pymdownx.details
use_directory_urls: false
## Navigation
nav:
- Introduction: 'index.md'
- Install: 'install.md'
- Usage:
- WMF: 'usage/wmf.md'
- Credits: 'credits.md'
- Releases:
- '0.1.3 (WIP)': 'changes/0.1.3.md'
- '0.1.2': 'changes/0.1.2.md'
- '0.1.1': 'changes/0.1.1.md'
- '0.1.0': 'changes/0.1.0.md'
- Developers:
- 'Coveralls': 'https://coveralls.io/github/PHPOffice/WMF'
- 'Code Coverage': 'coverage/index.html'
- 'PHPDoc': 'docs/index.html'