-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
103 lines (97 loc) · 3.02 KB
/
mkdocs.yml
File metadata and controls
103 lines (97 loc) · 3.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
site_name: Python CEL
site_description: Common Expression Language for Python - Fast, Safe, and Simple
site_url: https://python-cel.readthedocs.io
repo_url: https://github.com/hardbyte/python-common-expression-language
repo_name: hardbyte/python-common-expression-language
theme:
name: material
palette:
- scheme: default
primary: blue
accent: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue
accent: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [python]
options:
docstring_style: "google"
show_source: false
show_root_heading: true
show_category_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Learning CEL:
- Thinking in CEL: tutorials/thinking-in-cel.md
- CEL Language Basics: tutorials/cel-language-basics.md
- Your First Integration: tutorials/your-first-integration.md
- Extending CEL: tutorials/extending-cel.md
- Cookbook:
- Recipe Index: cookbook.md
- Business Logic & Data Transformation: how-to-guides/business-logic-data-transformation.md
- Dynamic Query Filters: how-to-guides/dynamic-query-filters.md
- Access Control Policies: how-to-guides/access-control-policies.md
- Error Handling: how-to-guides/error-handling.md
- CLI Usage Recipes: how-to-guides/cli-recipes.md
- Reference:
- Python API: reference/python-api.md
- CLI Reference: reference/cli-reference.md
- Development:
- Contributing & Developer Guide: contributing.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/hardbyte/python-common-expression-language
- icon: fontawesome/brands/python
link: https://pypi.org/project/common-expression-language/
extra_javascript:
- https://unpkg.com/mermaid@10.6.1/dist/mermaid.min.js
- javascripts/mermaid-init.js