forked from liquibase/liquibase-contribute-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
53 lines (47 loc) · 1.25 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
site_name: contribute.liquibase.com
repo_url: https://github.com/liquibase/liquibase-contribute-site
edit_uri: ./edit/main/docs
theme:
name: material
custom_dir: overrides
features:
- navigation.path
- navigation.tabs
- navigation.sections
- content.action.edit
- content.code.copy
logo: /images/logo.svg
favicon: /images/favicon.ico
markdown_extensions:
- tables
- admonition
- attr_list
- def_list
- pymdownx.details
- pymdownx.snippets:
base_path: snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- git-revision-date-localized:
enable_creation_date: true
enabled: !ENV [CI, false] ## Page rebuild is much slower with this enabled, so disabling unless the CI=true env variable is set, like on the build server
- search
- awesome-pages
extra:
analytics:
provider: google
property: G-SJKPP1K4KR
extra_css:
- css/shared.css
- css/custom.css
extra_javascript:
- js/custom.js