-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmkdocs.yml
62 lines (56 loc) · 1.53 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
# Project information
site_name: 'SimpleHelpers.Net'
site_description: 'Micro-libraries for .Net that are safe and simple to use'
site_author: 'Khalid Salomão'
site_url: 'http://khalidsalomao.github.io/SimpleHelpers.Net/'
# Repository
repo_name: 'GitHub'
repo_url: 'https://github.com/khalidsalomao/SimpleHelpers.Net'
# Copyright
copyright: 'Copyright (c) 2016 Khalid Salomão'
# Documentation and theme
docs_dir: 'mkdocs_site'
site_dir: 'mkdocs_site_deploy'
theme: 'material'
# Extensions
markdown_extensions:
- toc:
permalink: '#'
- pymdownx.github:
no_nl2br: true
- smarty
- pymdownx.magiclink
- pymdownx.headeranchor
- pymdownx.githubemoji
- pymdownx.tasklist
- pymdownx.betterem:
smart_enable: 'all'
- codehilite:
guess_lang: true
css_class: 'code'
- admonition
# Options
extra:
palette:
primary: 'blue grey'
accent: 'cyan'
font:
text: 'Open Sans'
code: 'Roboto Mono'
author:
github: 'khalidsalomao'
# Documentation pages
pages:
- 'SimpleHelpers.Net': 'index.md'
- 'Micro-libraries':
- FileEncoding: 'docs/fileencoding.md'
- MemoryCache: 'docs/memorycache.md'
- ModuleContainer: 'docs/modulecontainer.md'
- NamedLock: 'docs/namedlock.md'
- ObjectDiffPatch: 'docs/objectdiffpatch.md'
- ObjectPool: 'docs/objectpool.md'
- SQLiteStorage: 'docs/sqlitestorage.md'
- TimedQueue: 'docs/timedqueue.md'
- ConfigManager: 'docs/configmanager.md'
- 'Extra':
- 'gh-pages build': 'docs/builddocssite.md'