-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (88 loc) · 2.53 KB
/
Copy pathmkdocs.yml
File metadata and controls
94 lines (88 loc) · 2.53 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
site_name: Claude Code Log
site_description: Convert Claude Code transcript JSONL files to readable HTML and Markdown
site_url: https://daaain.github.io/claude-code-log/
repo_url: https://github.com/daaain/claude-code-log
repo_name: daaain/claude-code-log
edit_uri: edit/main/docs/
docs_dir: docs
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.instant
- navigation.tracking
- content.code.copy
- content.action.edit
- search.suggest
- search.highlight
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- gen-files:
scripts:
- docs/gen_pages.py
hooks:
- docs/hooks.py
markdown_extensions:
- admonition
- attr_list
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
# custom_fences renders ```mermaid blocks as live diagrams on the site
# (GitHub renders them natively; without this they'd show as code).
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- mkdocs-click
nav:
- Home: index.md
- Example output: example.md
- User Guide:
- Restoring archived sessions: restoring-archived-sessions.md
- Reference:
- CLI: reference/cli.md
- TUI: reference/tui.md
- Development:
- Application model: development/application_model.md
- Rendering architecture: development/rendering-architecture.md
- Messages: development/messages.md
- Message hierarchy: development/message-hierarchy.md
- DAG: development/dag.md
- Agents: development/agents.md
- Teammates: development/teammates.md
- Workflows: development/workflows.md
- CSS classes: development/css-classes.md
- Implementing a tool renderer: development/implementing-a-tool-renderer.md
- Plugins: development/plugins.md
- Contributing: contributing.md
- Changelog: changelog.md