-
Notifications
You must be signed in to change notification settings - Fork 34
/
mkdocs.yml
79 lines (68 loc) · 1.74 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
# Project information
site_name: 'IDBS-Spring20-Fudan'
site_description: 'Course website for introduction to database systems at Fudan University'
site_author: 'Zhifeng Hu'
site_url: 'https://zfhu.ac.cn/IDBS-Spring20-Fudan'
site_dir: 'docs'
docs_dir: 'content'
edit_uri: 'edit/master/content'
# Repository
repo_name: 'ichn-hu/IDBS-Spring20-Fudan'
repo_url: 'https://github.com/ichn-hu/IDBS-Spring20-Fudan'
# Copyright
copyright: 'Built by <a href="http://github.com/ichn-hu">ichn-hu</a> © 2020'
# Configuration
theme:
name: 'material'
language: 'en'
custom_dir: 'custom/'
favicon: '/static/assets/fudan.svg'
palette:
primary: 'Black'
accent: 'Blue'
font:
text: 'Roboto'
code: 'Roboto Mono'
icon:
logo: material/cloud
feature:
- tabs
# # Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: 'https://github.com/ichn-hu'
extra_css:
- 'static/css/katex.css'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css'
extra_javascript:
- 'static/js/katex.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js'
- 'https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js'
# Google Analytics
google_analytics:
- 'UA-149024530-1'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- footnotes
- codehilite:
linenums: true
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- Welcome: index.md
- Assignment 1:
- Instruction: assignment1/readme.md
- Assignment 2:
- Instruction: assignment2/readme.md
- Assignment 3:
- Instruction: assignment3/readme.md
- Assignment 4:
- Instruction: assignment4/readme.md