forked from cs01/gdbgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
31 lines (28 loc) · 817 Bytes
/
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
site_name: gdbgui
site_description: A modern, browser-based frontend to gdb (gnu debugger)
theme:
name: "material"
custom_dir: 'docs/theme'
google_analytics:
- 'UA-90243909-2'
- 'auto'
repo_name: cs01/gdbgui
repo_url: https://github.com/cs01/gdbgui
nav:
- Home: "index.md"
- Screenshot Tour: "screenshots.md"
- Installation: "installation.md"
- Getting Started: "gettingstarted.md"
- Examples: "examples.md"
- Guides: "guides.md"
- API: "api.md"
- FAQ: "faq.md"
- Contributing: "contributing.md"
- How it Works: "howitworks.md"
- Contact: "contact.md"
- Roadmap: "roadmap.md"
- Changelog: "changelog.md"
markdown_extensions:
- admonition # note blocks, warning blocks -- https://github.com/mkdocs/mkdocs/issues/1659
- markdown.extensions.codehilite:
guess_lang: false