-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
64 lines (53 loc) · 1.21 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
# Project information
site_name: 'KotmolPdbParser'
site_description: 'A Protein Database (PDB) Parser written in Kotlin:'
site_author: 'Jim Andreas'
site_url: 'https://kotmol.github.io/KotmolPdbParser'
# Repository
repo_name: 'kotmol/KotmolPdbParser'
repo_url: 'https://github.com/kotmol/KotmolPdbParser'
edit_uri: ""
# Copyright
copyright: 'Copyright © 2020 Jim Andreas'
# Configuration
theme:
name: 'material'
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
- tabs
#- instant
palette:
scheme: default
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
# Page tree
nav:
- Home: index.md
- Testing: Testing.md
- Uploading: Uploading.md
- PDB Notes: PDBnotes.md
- Special Structures: Special-Structures.md
# Notes
# avoid tabs in vim:
# :set tabstop=4 shiftwidth=4 expandtab
#