-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (90 loc) · 2.68 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
site_name: Arcan Documentation
site_author: TXT Arcan s.r.l., Italy
site_description:
copyright: "© 2021-2024 TXT Arcan | TXT Arcan s.r.l., Italy. All rights reserved"
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/linkedin
name: LinkedIn
link: https://www.linkedin.com/company/arcan-tech
- icon: fontawesome/brands/twitter
name: Twitter
link: https://twitter.com/arcan_tech
- icon: fontawesome/brands/instagram
name: Instagram
link: https://instagram.com/arcan_tech
- icon: fontawesome/brands/github
name: GitHub
link: https://github.com/Arcan-Tech
- icon: fontawesome/solid/envelope
name: Email
link: mailto:info@arcan.tech
theme:
name: material
language: en
logo: assets/images/logo.png
favicon: assets/images/favicon.ico
features:
- navigation.top
plugins:
- social
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: pink
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: white
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: material/alert-circle
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
markdown_extensions:
- md_in_html
- pymdownx.superfences
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- admonition
nav:
- Welcome: 'index.md'
- Getting started: 'get_started.md'
- 'User guide':
- 'Install Arcan': 'installation.md'
- 'CI integration': 'ci_integration.md'
- 'Analyse a new project': 'analyse_project.md'
- 'Inspect a project': 'inspect_project.md'
- 'Knowledge base':
- 'Glossary': 'glossary.md'
- 'Architectural smells': 'architectural_smells.md'
- 'Metrics': 'metrics.md'
- 'Results interpretation': 'interpretation.md'
- 'Refactoring best pratices': 'refactoring.md'
- 'Supported languages': 'compatibility.md'
- 'Common issues': 'common-issues.md'
- 'Support': 'support.md'