-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmkdocs.yml
More file actions
90 lines (83 loc) · 2.47 KB
/
mkdocs.yml
File metadata and controls
90 lines (83 loc) · 2.47 KB
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
site_name: Python Liquid
site_description: A Python engine for the Liquid template language.
theme:
name: "material"
palette:
scheme: default
primary: black
features:
- content.code.copy
- navigation.top
- navigation.tabs
- navigation.tracking
- navigation.expand
logo: img/droplet_white_liquid.svg
favicon: img/favicon.ico
repo_name: jg-rp/liquid
repo_url: https://github.com/jg-rp/liquid
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"
- autorefs
nav:
- Home:
- Introduction: "index.md"
- Liquid Syntax: "syntax.md"
- 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"
- Internationalization and localization: "babel.md"
- Static template analysis: "static_analysis.md"
- Custom filters: "custom_filters.md"
- Custom tags: "custom_tags.md"
- Known issues: "known_issues.md"
- Migration guide: "migration.md"
- Tag reference:
- Default tags: "tag_reference.md"
- Extra tags: "optional_tags.md"
- Experimental tags: "experimental_tags.md"
- Filter reference:
- Default filters: "filter_reference.md"
- Extra 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"
- Extra: "api/extra.md"
- Messages: "api/messages.md"
- AST: "api/ast.md"
- Parser: "api/parser.md"
- Expression: "api/expression.md"
- Render context: "api/render_context.md"
- Filter helpers: "api/filter.md"
- Tag: "api/tag.md"
- Undefined: "api/undefined.md"
- Tokens: "api/tokens.md"
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- css/style.css
watch:
- liquid