-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
67 lines (61 loc) · 1.52 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
site_name: Leetcode Primer
site_url: http://127.0.0.1:8000/
site_author: Theo Despoudis
repo_url: https://github.com/theodesp/leetcode-primer
plugins:
- search:
prebuild_index: true
- tags
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- def_list
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
- pymdownx.superfences:
custom_fences:
- name: python
class: python
validator: !!python/name:markdown_exec.validator
format: !!python/name:markdown_exec.formatter
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
theme:
name: material
palette:
primary: teal
favicon: images/icon.ico
logo: images/logo.png
font:
text: Ubuntu
features:
- search.highlight
- navigation.tracking
- navigation.expand
- navigation.top
- navigation.sections
- navigation.tabs
- toc.integrate
- content.code.annotate
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Algorithmic Techniques: techniques.md
- Problems 1-20: problems-1to20
- Problems 21-40: problems-21to40
- Problems 41-60: problems-41to60