-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmkdocs.yml
More file actions
116 lines (107 loc) · 2.65 KB
/
mkdocs.yml
File metadata and controls
116 lines (107 loc) · 2.65 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
104
105
106
107
108
109
110
111
112
113
114
115
116
# pyCircuit Documentation Configuration
site_name: pyCircuit
site_description: "A Python-based hardware description framework that compiles Python functions to synthesizable RTL through MLIR"
site_author: LinxISA Contributors
site_url: https://github.com/LinxISA/pyCircuit
repo_url: https://github.com/LinxISA/pyCircuit
repo_name: LinxISA/pyCircuit
copyright: "Copyright © 2024 LinxISA Contributors"
# Configuration
docs_dir: docs
site_dir: _build/html
# Theme
theme:
name: material
palette:
- scheme: default
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.annotate
icon:
repo: fontawesome/brands/github
# Markdown extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
# Navigation
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- getting-started/installation.md
- getting-started/quickstart.md
- getting-started/first-design.md
- Tutorial:
- tutorial/index.md
- tutorial/unified-signal-model.md
- tutorial/cycle-aware-computing.md
- PyCircuit V5 Programming Tutorial.md
- Core Docs:
- QUICKSTART.md
- FRONTEND_API.md
- TESTBENCH.md
- PRIMITIVES.md
- SPEC_STRUCTURES.md
- SPEC_COLLECTIONS.md
- CONST_METAPROGRAMMING.md
- IR_SPEC.md
- DIAGNOSTICS.md
- PIPELINE.md
- API Reference:
- api/index.md
- Development:
- development/index.md
- development/contributing-workflow.md
- development/testing-and-gates.md
- development/review-and-merge.md
- Upgrade:
- updatePLAN.md
- rfcs/pyc4.0-decisions.md
- Gates:
- gates/README.md
- gates/decision_status_v40.md
# Plugins
plugins:
- search:
lang: en
# Extra
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/LinxISA/pyCircuit
- icon: fontawesome/brands/python
link: https://python.org