-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.tackle.yml
119 lines (114 loc) · 3.49 KB
/
mkdocs.tackle.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
site_name: tackle
site_description: Declarative DSL for building modular workflows and code generators.
site_url: https://sudoblockio.github.io/tackle
theme:
name: material
palette:
- scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.sections
# - navigation.tabs
icon:
repo: fontawesome/brands/github-alt
# logo: img/icon-white.svg
# favicon: img/favicon.png
language: en
repo_name: sudoblockio/tackle
repo_url: https://github.com/sudoblockio/tackle
edit_uri: ''
nav:
# - Usage Docs:
- Index: index.md
- Hello Worlds: hello-worlds.md
- Installation: installation.md
- Command Line: command-line.md
- Using Providers: using-providers.md
- Project Structure: project-structure.md
- Writing Tackle Files: writing-tackle-files.md
- Jinja Templating: jinja.md
- Hook Methods: hook-methods.md
- Python Hooks: python-hooks.md
- Declarative Hooks: declarative-hooks.md
- Declarative CLIs: declarative-cli.md
- Creating Providers: creating-providers.md
- Memory Management: memory-management.md
- Special Variables: special-variables.md
- Debugging: debugging-tackle.md
- Testing Providers: testing-providers.md
- Cookbook:
# - Tackle File Examples:
- Index: examples/index.md
- Prompting: cookbook/prompting.md
- Reading and Writing Data: cookbook/reading-writing-data.md
- Context Manipulation: cookbook/context-manipulation.md
- Complex Logic: cookbook/complex-logic.md
- Generating Code: cookbook/generating-code.md
- Tutorials:
- Code Generation:
- Index: tutorials/code-generation/index.md
- Basics: tutorials/code-generation/basics.md
- Modules: tutorials/code-generation/modular.md
- Partial: tutorials/code-generation/partial.md
# - Stateful: tutorials/code-generation/stateful.md
# - Kubernetes: tutorials/kubernetes.md
# - Infrastructure: tutorials/infrastructure.md
# - Utilities: tutorials/utilities.md
- Provider Docs->: "{{mkdocs_nav_list}}"
- Development:
- Contributing: contributing.md
- Development Roadmap: development-roadmap.md
- Authors: authors.md
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: "!!python/name:pymdownx.superfences.fence_code_format ''"
- pymdownx.tabbed:
alternate_style: true
- mdx_include
extra:
analytics:
provider: google
property: UA-205713594-2
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/tiangolo/sqlmodel
- icon: fontawesome/brands/twitter
link: https://twitter.com/tiangolo
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/tiangolo
- icon: fontawesome/brands/dev
link: https://dev.to/tiangolo
- icon: fontawesome/brands/medium
link: https://medium.com/@tiangolo
- icon: fontawesome/solid/globe
link: https://tiangolo.com
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js
write to yaml_>: yaml mkdocs.yml "{{this}}"