-
Notifications
You must be signed in to change notification settings - Fork 106
/
mkdocs.en.yml
101 lines (98 loc) · 2.7 KB
/
mkdocs.en.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
site_name: BSL Language Server
nav:
- Home:
- index.md
- faq.md
- systemRequirements.md
- Contributing:
- About: contributing/index.md
- Start:
- contributing/EnvironmentSetting.md
- contributing/FastStart.md
- contributing/StyleGuide.md
- JavaDoc: javadoc/index.html
- Diagnostics development:
- contributing/DiagnosticDevWorkFlow.md
- contributing/DiagnosticExample.md
- contributing/DiagnosticStructure.md
- contributing/DiagnosticTypeAndSeverity.md
- contributing/DiagnosticTag.md
- contributing/DiagnostcAddSettings.md
- contributing/DiagnosticQuickFix.md
- Reporters:
- About: reporters/index.md
- JSON: reporters/json.md
- Generic Issue: reporters/generic.md
- JUnit: reporters/junit.md
- TSLint: reporters/tslint.md
- Console: reporters/console.md
- Diagnostics: diagnostics/index.md
- Features:
- About: features/index.md
- features/ConfigurationFile.md
- features/DiagnosticIgnorance.md
theme:
name: material
language: en
logo: 'assets/images/logo.png'
favicon: 'assets/images/logo.png'
palette:
# Light mode
- teal: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: light blue
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- navigation.tabs
- search.highlight
- toc.integrate
- header.autohide
extra:
social:
- icon: fontawesome/brands/github
link: 'https://github.com/1c-syntax'
- icon: fontawesome/brands/telegram
link: 'https://t.me/bsl_language_server'
alternate:
- name: English
link: /bsl-language-server/en/
lang: en
- name: Русский
link: /bsl-language-server/
lang: ru
extra_css:
- 'assets/stylesheets/extra.css'
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- assets/javascripts/tables.js
markdown_extensions:
- admonition
- codehilite
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- markdown.extensions.toc:
permalink: true
slugify: !!python/name:pymdownx.slugs.uslugify_cased
toc_depth: 2
plugins:
- search:
lang:
- en
- ru
site_url: 'https://1c-syntax.github.io/bsl-language-server'
repo_name: '1c-syntax/bsl-language-server'
repo_url: 'https://github.com/1c-syntax/bsl-language-server'
edit_uri: 'edit/develop/docs/en'
google_analytics: ['UA-150754232-1', '1c-syntax.github.io']