-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
86 lines (73 loc) · 1.81 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
83
84
85
# Pages
pages:
- 'Home': index.md
- 'Notebook':
- 'Programing':
- 'Python': 'notesmd/programing/python.md'
- 'Snakemake': 'notesmd/programing/snakemake.md'
- 'Biopython': 'notesmd/programing/biopython.md'
- 'Linux': 'notesmd/programing/linux.md'
- 'Django': 'notesmd/programing/django.md'
- 'Perl': 'notesmd/programing/perl.md'
- 'Bioinformatics': 'notesmd/programing/bioinformatics.md'
- 'MkDocs': 'notesmd/programing/mkdocs.md'
- 'Project on Github': project.md
- 'Publish': publish.md
- 'About me': me.md
# Project information
site_name: Xuan's notebook
site_description: 'A Personal Noteboos'
site_author: 'Xuan Zhang'
site_url: 'https://xuanblo.github.io'
# Repository
repo_name: "xuanblo/notebook"
repo_url: "https://github.com/xuanblo/notebook"
# site build
site_dir: html/
use_directory_urls: true
# Copyright
copyright: 'Copyright © 2017 - 2018 Xuan Zhang'
# Configuration
theme:
name: 'material'
language: 'en'
palette:
primary: 'Blue Grey'
accent: 'Green'
font:
text: 'Ubuntu'
code: 'Ubuntu Mono'
# Customization
extra:
social:
- type: 'github'
link: 'https://github.com/xuanblo'
- type: 'ResearchGate'
link: 'https://www.researchgate.net/profile/Xuan_Zhang91'
# Google Analytics
google_analytics:
- 'UA-117843700-1'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde