forked from DFiantHDL/DFHDL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
115 lines (103 loc) · 3.38 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
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
# Project information
site_name: DFDocs
site_dir: site
site_url: https://dfianthdl.github.io/
site_description: DFiant Hardware Description Language (HDL) Documentation
site_author: Oron Port
# Repository
repo_name: 'DFiantHDL/DFiant'
repo_url: 'https://github.com/DFiantHDL/DFiant'
# Copyright
copyright: Copyright © 2019 <a href="https://www.researchgate.net/profile/Oron_Port">Oron Port</a> and <a href="https://yoav.net.technion.ac.il">Yoav Etsion</a>
# Configuration
theme:
name: 'material'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
features:
- navigation.tabs
# - navigation.instant
icon:
logo: 'material/home'
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: 'https://www.github.com/soronpo/'
- icon: fontawesome/brands/researchgate
link: 'https://www.researchgate.net/profile/Oron_Port'
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/soronpo'
nav:
- Introduction:
- DFDocs: index.md
- 'DFiant: First Look': intro/first-look/index.md
- Motivation (Why Another HDL): intro/motivation/index.md
- A Dataflow Hardware Description Abstraction: intro/dataflow-abstraction/index.md
- Getting Started:
- Initial Setup: getting-started/initial-setup/index.md
- Hello Hardware World: getting-started/hello-world.md
- User Guide:
- Type System: user-guide/type-system/index.md
- State (Memory): user-guide/state/index.md
- Connectivity: user-guide/connectivity/index.md
- Meta Hardware Description: user-guide/meta/index.md
- Compilation: user-guide/compilation/index.md
- Simulation: user-guide/simulation/index.md
- Synthesis: user-guide/synthesis/index.md
- Errors: user-guide/errors/index.md
- About:
- Release Notes: about/release-notes.md
- Contributing: about/contributing.md
- License: about/LICENSE.md
- Acknowledgements: about/acknowledgements.md
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
- https://scastie.scala-lang.org/embedded.js
- javascripts/scastie.js
markdown_extensions:
- toc:
# See https://github.com/facelessuser/pymdown-extensions/issues/609
permalink: "\U0001F517"
- abbr
- admonition
- pymdownx.snippets:
check_paths: true
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- name: scastie
class: scastie
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
- pymdownx.details
- pymdownx.inlinehilite:
custom_inline:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.inline_mathjax_format
- pymdownx.highlight:
use_pygments: true
linenums_style: pymdownx.inline
linenums: true
extra_css:
- css/scastie.css
- css/vs.css
- css/extra.css
- css/dfiant-admonition.css
- css/rtl-admonition.css
plugins:
- search
- redirects:
redirect_maps:
'LEGaTO/index.md': 'index.md'