Skip to content

Commit e80eb2d

Browse files
committed
[docs] Replace Markdown in HTML with pure HTML
1 parent aab1742 commit e80eb2d

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

docs/index.md.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- This file is generated by tools/scripts/synchronize_docs.py! -->
22
# modm: a barebone embedded library generator
3-
<center>
4-
![](images/logo.svg)
5-
</center>
3+
4+
<img src="images/logo.svg" style="display: block; margin: auto;"/>
5+
66
{{content}}
77

88
### Examples

docs/mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ markdown_extensions:
7474
- pymdownx.tasklist:
7575
custom_checkbox: true
7676
- pymdownx.tilde
77-
- md_in_html
7877

7978
nav:
8079
- Home:

docs/src/how-modm-works.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ specifically for your targets and needs and generate a custom library.
1313
You can generate more than just code, in this example, lbuild also generates a
1414
build system which then compiles and links the application into a executable.
1515

16-
<center>
17-
![](images/system-overview.svg)
18-
</center>
16+
<img src="../images/system-overview.svg" style="display: block; margin: auto;"/>
1917

2018
We've also put a lot of thought into modm-devices, about what data to extract,
2119
how to format and store it. We automated the entire process to get the high
@@ -34,7 +32,7 @@ by looking at the dependency graph before, or by inspecting the generated code
3432
after calling lbuild, and gives you the opportunity to only use the parts of
3533
modm you really like.
3634

37-
![](images/uart-dep-graph.svg)
35+
<img src="../images/uart-dep-graph.svg" style="display: block; margin: auto;"/>
3836

3937
A lbuild module is just a few lines of Python code. Here we can see the code for
4038
the `modm:platform:uart` module from the example above. It declares its name,

0 commit comments

Comments
 (0)