-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
52 lines (42 loc) · 1.27 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
site_name: MetaPrompt Documentation
# Site description (optional)
site_description: "MetaPrompt is a template engine for LLM prompts with support for writing prompts with prompts "
# Site URL (optional, useful for SEO and deployment)
site_url: "https://docs.metaprompt-lang.org"
edit_uri: blob/main/docs/
repo_url: https://github.com/promptware/metaprompt
# Theme
theme:
name: readthedocs
markdown_extensions:
- toc:
permalink: true
- tables
- admonition
- codehilite
nav:
- Home: index.md
- Syntax: syntax.md
# - Getting Started:
# - Introduction: getting_started/introduction.md
# - Installation: getting_started/installation.md
# - Usage:
# - Basic Usage: usage/basic_usage.md
# - Advanced Features: usage/advanced_features.md
# - API Reference:
# - API Overview: api/api_overview.md
# - About:
# - License: about/license.md
# - Contributing: about/contributing.md
# Extra configuration for plugins (optional)
plugins:
- search # Default search plugin
# Uncomment below for more plugins (you'll need to install them separately)
# - mkdocs-mermaid2-plugin
# - mkdocs-awesome-pages-plugin
# extra_javascript:
# - javascripts/custom.js
# extra_css:
# - stylesheets/custom.css
site_dir: site
docs_dir: docs