dbankier / vscode-instant-markdown

vscode extension for instant markdown previews
53 stars 23 forks source link

Codeblock after List renders incorrectly #38

Open schoetbi opened 6 years ago

schoetbi commented 6 years ago

As soon as you have a list directly followed by a code block the code block is rendered as normal text.

Example:

This does not work

- one
- two
- three

    struct MyStruct {

    }

This works

- one
- two
- three

<br>

    struct MyStruct {

    }