-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathmkdocs.yml
42 lines (39 loc) · 1010 Bytes
/
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
site_name: xDSL
theme:
name: "material"
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
plugins:
- search
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
members_order: source
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
nav:
- xDSL: index.md
- API Reference:
- API Reference: api/index.md
- Core IR Data Structures:
- Core IR Data Structures: api/ir/index.md
- Attribute: api/ir/attribute.md
- SSAValue: api/ir/ssa_value.md
- IRNode: api/ir/ir_node.md
- Operation: api/ir/operation.md
- Block: api/ir/block.md
- Region: api/ir/region.md
- Dialect: api/ir/dialect.md
- Code Reference: reference/index.md
- Guides:
- MLIR Interoperation: guides/mlir_interoperation.md