Commit 2c1adee
committed
editorconfig: Use 4 spaces identation for Markdown files
This is because mkdocs doesn't render numbered lists correctly if they
have more than one paragraph using less than 4 spaces indentation.
For example, this:
```md
1. A list item.
This list item gets improperly rendered.
```
Gets rendered like this in HTML:
```html
<ol>
<li><p>A list item./<p></li>
</o>
<p>This list item gets improperly rendered.</p>
```
While this:
```md
1. A list item.
This list item gets improperly rendered.
```
Gets rendered like this in HTML:
```html
<ol>
<li>
<p>A list item.</p>
<p>This list item gets improperly rendered.</p>
</li>
</o>
```
Signed-off-by: Leandro Lucarella <[email protected]>1 parent 023cbf1 commit 2c1adee
1 file changed
+1
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
25 | | - | |
26 | | - | |
0 commit comments