-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
60 lines (55 loc) · 1.51 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
site_name: 'Wave'
site_description: 'C# extensions for ArcFM Solution and ArcGIS for Desktop development.'
site_author: 'Kyle Baesler'
site_url: 'http://jumpercables.github.io/Wave/'
repo_name: 'Jumpercables/Wave'
repo_url: 'https://github.com/Jumpercables/Wave/'
copyright: 'Copyright (c) 2017 Kyle Baesler'
theme: 'material'
extra:
version: '1.0.6'
logo: 'images\wave-red-64.png'
author:
github: 'Jumpercables'
palette:
primary: 'Red'
accent: 'Teal'
social:
- type: 'github'
link: 'https://github.com/Jumpercables'
- type: 'linkedin'
link: 'https://www.linkedin.com/in/baesler'
markdown_extensions:
- smarty
- footnotes
- sane_lists
- codehilite(linenums=true)
- admonition
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
- toc:
permalink: '#'
pages:
- Home: 'index.md'
- Features:
- General: 'features/extensions.md'
- Object Relational Mapping: 'features/orm.md'
- LINQ: 'features/linq.md'
- Reading Data: 'features/data-reading.md'
- Editing Data: 'features/data-editing.md'
- Samples: 'samples.md'
- Release Notes: 'release-notes.md'
- Contributing: 'contribute.md'
- Resources: 'resources.md'
- Packages: 'packages.md'
- License: 'license.md'
- FAQ: 'faq.md'