-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmkdocs.yml
More file actions
69 lines (63 loc) · 1.76 KB
/
mkdocs.yml
File metadata and controls
69 lines (63 loc) · 1.76 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
site_name: AXLE Documentation
site_description: Python client and CLI for the Axiom Lean Engine API
site_url: https://axle.axiommath.ai/v1/docs/
repo_name: axiom-lean-engine
repo_url: https://github.com/AxiomMath/axiom-lean-engine
theme:
name: material
custom_dir: docs/overrides
logo: assets/logo.svg
favicon: assets/favicon.svg
palette:
scheme: default
primary: custom
accent: custom
font: false
features:
- navigation.instant
- navigation.sections
- navigation.expand
- search.suggest
- content.code.copy
- header.autohide
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Quick Start: quickstart.md
- Configuration: configuration.md
- Troubleshooting: troubleshooting.md
- Python API: python-api.md
- CLI Reference: cli-reference.md
- Release Notes:
- Changelog: changelog.md
- Tools:
- verify_proof: tools/verify_proof.md
- check: tools/check.md
- extract_theorems: tools/extract_theorems.md
- extract_decls: tools/extract_decls.md
- rename: tools/rename.md
- theorem2lemma: tools/theorem2lemma.md
- theorem2sorry: tools/theorem2sorry.md
- merge: tools/merge.md
- simplify_theorems: tools/simplify_theorems.md
- repair_proofs: tools/repair_proofs.md
- have2lemma: tools/have2lemma.md
- have2sorry: tools/have2sorry.md
- sorry2lemma: tools/sorry2lemma.md
- disprove: tools/disprove.md
- normalize: tools/normalize.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- toc:
permalink: true
plugins:
- search
extra_css:
- stylesheets/extra.css