forked from cp-algorithms/cp-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (79 loc) · 2.57 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
site_name: Algorithms for Competitive Programming
site_url: https://cp-algorithms.com
site_description: 'The goal of this project is to translate the wonderful resource http://e-maxx.ru/algo which provides descriptions of many algorithms and data structures especially popular in field of competitive programming. Moreover we want to improve the collected knowledge by extending the articles and adding new articles to the collection.'
docs_dir: src
site_dir: public
use_directory_urls: false
theme:
name: material
custom_dir: src/overrides
palette:
- scheme: cpalgo
primary: deep purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
logo: favicon.ico
favicon: favicon.ico
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- toc.integrate
- search.suggest
repo_url: https://github.com/cp-algorithms/cp-algorithms
repo_name: cp-algorithms/cp-algorithms
edit_uri: edit/master/src/
copyright: Text is available under the <a href="https://github.com/cp-algorithms/cp-algorithms/blob/master/LICENSE">Creative Commons Attribution Share Alike 4.0 International</a> License<br/>Copyright © 2014 - 2022 by <a href="https://github.com/cp-algorithms">https://github.com/cp-algorithms</a>
extra_javascript:
- javascript/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.arithmatex:
generic: true
tex_inline_wrap: ['$', '$']
tex_block_wrap: ['$$', '$$']
- pymdownx.highlight
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- meta
- toc:
permalink: true
plugins:
- mkdocs-simple-hooks:
hooks:
on_env: "hooks:on_env"
- search
- tags:
tags_file: tags.md
- literate-nav:
nav_file: navigation.md
- git-revision-date-localized:
enable_creation_date: true
enabled: !ENV [MKDOCS_ENABLE_GIT_REVISION_DATE, False]
- git-authors
- git-committers:
repository: cp-algorithms/cp-algorithms
docs_path: src/
token: !ENV MKDOCS_GIT_COMMITTERS_APIKEY
enabled: !ENV [MKDOCS_ENABLE_GIT_COMMITTERS, False]
- macros
- rss
extra:
analytics:
provider: google
property: G-7FLS2HCYHH