-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
99 lines (91 loc) · 2.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
site_name: Python Liquid2
site_description: Liquid templates for Python.
site_url: https://jg-rp.github.io/python-liquid2/
theme:
name: material
palette:
primary: white
features:
- content.code.copy
- navigation.top
- navigation.sections
- navigation.tabs
- navigation.prune
repo_name: jg-rp/python-liquid2
repo_url: https://github.com/jg-rp/python-liquid2
edit_uri: ""
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_signature_annotations: true
show_root_heading: true
separate_signature: true
docstring_section_style: "spacy"
nav:
- Home:
- Introduction: "index.md"
- Quick start: "quick_start.md"
- Liquid Syntax: "syntax.md"
- Conventions: "conventions.md"
- Migration guide: "migration.md"
- User guide:
- Rendering templates: "rendering_templates.md"
- Liquid environments: "environment.md"
- Loading templates: "loading_templates.md"
- Render context data: "render_context.md"
- Variables, types and drops: "variables_and_drops.md"
- Whitespace control: "whitespace_control.md"
- Internationalization and localization: "babel.md"
- Static template analysis: "static_analysis.md"
- Custom filters: "custom_filters.md"
- Custom tags: "custom_tags.md"
- Tag reference:
- Default tags: "tag_reference.md"
- Optional tags: "optional_tags.md"
- Filter reference:
- Default filters: "filter_reference.md"
- Optional filters: "optional_filters.md"
- API reference:
- Convenience functions: "api/convenience.md"
- Environment: "api/environment.md"
- Template: "api/template.md"
- Loaders: "api/loaders.md"
- Exceptions: "api/exceptions.md"
- Builtin: "api/builtin.md"
- AST: "api/ast.md"
- Expression: "api/expression.md"
- Render context: "api/render_context.md"
- Filter helpers: "api/filter.md"
- Tag: "api/tag.md"
- Undefined: "api/undefined.md"
- Babel: "api/babel.md"
- Messages: "api/messages.md"
- Tokens: "api/tokens.md"
- WhitespaceControl: "api/whitespace_control.md"
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
use_pygments: true
pygments_lang_class: true
- attr_list
- md_in_html
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
watch:
- liquid2
hooks:
- docs/.overrides/hooks/shortcodes.py
extra_css:
- stylesheets/extra.css