forked from owasp-amass/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
118 lines (104 loc) · 2.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: OWASP Amass
site_url: https://51nk0r5w1m.github.io/docs/
repo_name: OWASP Amass
repo_url: https://github.com/owasp-amass/amass
site_description: "In-depth OSINT collection and external attack surface mapping "
site_author: OWASP Amass Contributors
remote_branch: gh-pages
#copyright:
theme:
name: 'material'
favicon: assets/favicon.png
icon:
logo: simple/owasp
annotation: material/plus-circle
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'black'
accent: 'red'
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'red'
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
font:
text: 'Lato'
code: 'Fira Code'
features:
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.indexes
- navigation.footer
- navigation.top
- navigation.tracking
- toc.follow
extra_css:
- stylesheets/extra.css
# Additional configuration
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/owasp-amass
- icon: fontawesome/brands/docker
link: https://github.com/owasp-amass/amass-docker-compose
- icon: fontawesome/brands/discord
link: https://discord.gg/HNePVyX3cp
- icon: fontawesome/brands/mastodon
link: https://infosec.exchange/@amass
- icon: fontawesome/brands/x-twitter
link: https://x.com/owaspamass/
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- attr_list
- md_in_html
nav:
- Getting Started: index.md
- Open Asset Model:
- Open Asset Model: open-asset-model/index.md
- Contact: open-asset-model/contact.md
- Registration: open-asset-model/registration.md
- Infrastructure: open-asset-model/infrastructure.md
- People: open-asset-model/people.md
- Organization: open-asset-model/organization.md
- Fingerprint: open-asset-model/fingerprint.md
- Configuration: configuration.md
- Data Sources: data-sources.md
- Advanced Usage: advanced-usage.md
- 'Change Log': changelog.md
- 'Contributing': contributing.md