Open
Bug 1315171
Opened 9 years ago
Markdown gets confused when mixing outlines with code blocks
Categories
(Bugzilla :: Creating/Changing Bugs, defect)
Bugzilla
Creating/Changing Bugs
Tracking
()
NEW
People
(Reporter: altlist, Unassigned)
Details
Markdown gets confused when mixing outlines with code blocks, but only if no new lines are added.
If I use this comment:
1. outline 1
```
< before
---
> after
```
1. outline 2
```
< before
---
> after
```
The output looks like this:
1. outline 1
< before
---
after
2. outline 2
< before
after
But if I put a blank line before/after the two code blocks, it looks correct, such as below:
1. outline 1
< before
---
> after
2. outline 2
< before
---
> after
You need to log in
before you can comment on or make changes to this bug.
Description
•