forked from eli64s/readme-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
72 lines (64 loc) · 1.54 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
# Readme-ai MkDocs Site Configuration
site_name: Readme-ai Docs
site_description: "🎈 Automated README file generator, powered by GPT language model APIs."
site_url: https://eli64s.github.io/readme-ai/
site_author: readme-ai
repo_url: https://github.com/eli64s/readme-ai
repo_name: eli64s/readme-ai
docs_dir: "docs/docs/"
theme:
icon:
repo: fontawesome/brands/github-alt
name: material
palette:
primary: white
accent: blue
language: en
font:
text: "Roboto"
code: "Roboto Mono"
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- navigation.prune
- navigation.footer
- navigation.tracking
- navigation.instant
- navigation.instant.progress
- navigation.indexes
- navigation.sections
nav:
- Home: index.md
- Installation: installation.md
- Getting Started:
- "Prerequisites": prerequisites.md
- "Running the CLI": usage.md
- "CLI Commands": cli_commands.md
- Features: features.md
- Examples: examples.md
- Concepts:
- "Core Concepts": concepts.md
- "How It Works": how_it_works.md
- "Pydantic Models": pydantic_models.md
- Contributing: contributing.md
markdown_extensions:
- admonition
- attr_list
- md_in_html
extra_css:
- css/custom.css
- css/termynal.css
extra_javascript:
- js/custom.js
- js/termynal.js
plugins:
- search