-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
109 lines (99 loc) · 2.62 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
# Project information
site_name: Anonipy
site_author: Erik Novak
site_description: >-
Data anonymization package, supporting different anonymization strategies
# Repository
repo_name: eriknovak/anonipy
repo_url: https://github.com/eriknovak/anonipy
# Configuration
theme:
name: material
features:
- content.code.copy
- content.code.annotate
- content.tooltips
- navigation.indexes
- navigation.tabs
- navigation.top
- navigation.footer
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
# Palette toggle for light
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
logo: assets/imgs/logo.png
favicon: assets/imgs/favicon.png
edit_uri: ""
extra_css:
- css/extra.css
# Plugins
plugins:
- blog:
blog_dir: how-to-guides
- autorefs
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- mkdocstrings:
handlers:
python:
options:
show_root_heading: True
show_root_toc_entry: False
members_order: "source"
heading_level: 3
# Markdown Extensions
markdown_extensions:
- admonition
- attr_list
- def_list
- pymdownx.critic
- pymdownx.details
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
# Page tree
nav:
- Home: index.md
- How-To Guides:
- how-to-guides/index.md
- API Reference:
- references/index.md
- anonymize:
- references/anonymize/index.md
- extractors: references/anonymize/extractors.md
- generators: references/anonymize/generators.md
- strategies: references/anonymize/strategies.md
- utils:
- references/utils/index.md
- regex: references/utils/regex.md
- file_system: references/utils/file_system.md
- language_detector: references/utils/language_detector.md
- definitions: references/definitions.md
- constants: references/constants.md
- Changelog: changelog.md
- Development: development.md