forked from OWASP/CheatSheetSeries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
63 lines (60 loc) · 1.88 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
# Project information
site_name: OWASP Cheat Sheet Series
site_url: https://cheatsheetseries.owasp.org/
site_description: Website with the collection of all the cheat sheets of the project.
# Repository
repo_name: OWASP/CheatSheetSeries
repo_url: https://github.com/OWASP/CheatSheetSeries
# Copyright
copyright: ©Copyright 2021 - CheatSheets Series Team - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Creative Commons Attribution 3.0 Unported License</a>.
#Config
docs_dir: cheatsheets/
google_analytics:
- !!python/object/apply:os.getenv ["WORKFLOW_GOOGLE_ANALYTICS_KEY", "none"]
- auto
use_directory_urls: false
plugins:
- search:
# prebuild_index: true
lang:
- en
#For read the docs
# theme:
# name: readthedocs
# custom_dir: custom_theme/
# highlightjs: true
# sticky_navigation: false
# markdown_extensions:
# - pymdownx.emoji:
# emoji_index: !!python/name:pymdownx.emoji.twemoji
# emoji_generator: !!python/name:pymdownx.emoji.to_alt
# - toc:
# permalink: true
#For material
theme:
name: material
custom_dir: custom_theme/
favicon: assets/WebSite_Favicon.png
logo: "assets/OWASP_Logo_Transp.png"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences # Required by Pygments
- pymdownx.inlinehilite
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- toc:
permalink: true