-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
60 lines (60 loc) · 1.77 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: lambda-handlers
# theme: flatly
theme:
name: 'material'
site_url: https://lambda-handlers.readthedocs.io
repo_url: https://github.com/enter-at/lambda-handlers
site_description: An opinionated Python package that facilitates specifying AWS Lambda handlers.
site_author: Steffen Leistner, Alexandre Savio
site_dir: site
docs_dir: docs
copyright: LICENSE
plugins:
- search
- markdownextradata: {}
markdown_extensions:
- toc:
permalink: true
- codehilite:
linenums: 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
extra:
social:
- type: 'github'
link: 'https://github.com/enter-at'
project:
name: lambda-handlers
docs_url: https://lambda-handlers.readthedocs.io
git_url: https://github.com/enter-at/lambda-handlers
fork_url: https://github.com/enter-at/lambda-handlers/fork
issues_url: https://github.com/enter-at/lambda-handlers/issues
authors: Steffen Leistner, Alexandre Savio
max_line_width: 120
nav:
- Home: index.md
- User Guide:
- Quickstart: quickstart.md
- Examples: examples.md
- About:
- Release Notes: about/changelog.md
- License: about/license.md
- Contributing:
- Contributing guide: contributing/1.-contributing-guide.md
- Coding standard: contributing/2.-coding-standard.md
- Code of conduct: contributing/3.-code-of-conduct.md
- Acknowledgements: contributing/4.-acknowledgements.md