-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmkdocs.yml
52 lines (48 loc) · 1.59 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
# Project information
site_name: 'Headless Burp'
site_description: 'Provides a suite of Burp Suite extensions and a maven plugin to automate security tests using BurpSuite.'
site_author: 'Anand Sudhir Prayaga'
site_url: 'https://NetsOSS.github.io/headless-burp'
# Repository
repo_name: 'headless-burp'
repo_url: 'https://github.com/NetsOSS/headless-burp'
# Documentation and theme
docs_dir: docs
theme: material
# Extensions
markdown_extensions:
- admonition
- codehilite(guess_lang=false)
- footnotes
- meta
- toc(permalink=true)
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
nav:
- 'Introduction': 'index.md'
- 'Getting Started': 'getting-started.md'
- 'Background':
- 'Background': 'background/background.md'
- 'Our Goal': 'background/our-goal.md'
- 'Burp': 'background/burp.md'
- 'Automation': 'background/automation.md'
- 'User Guide':
- 'Installation': 'user-guide/installation.md'
- 'Burp Extensions':
- 'Headless Burp Proxy': 'user-guide/burp-extensions/headless-burp-proxy.md'
- 'Headless Burp Scanner': 'user-guide/burp-extensions/headless-burp-scanner.md'
- 'Maven Plugin':
- 'Usage': 'user-guide/maven-plugin/usage.md'
- 'Known Issues & Limitations': 'known-issues.md'
- 'Release Notes': 'release-notes/release-notes-1.0.md'