hagenburger / pimd

PIMD – Processing Instructions for Markdown
https://hagenburger.github.io/pimd-docs/
MIT License
20 stars 5 forks source link

Render inline HTML properly #74

Closed hagenburger closed 5 years ago

hagenburger commented 5 years ago

Inline HTML didn’t get rendered properly.

Markdown:

<i>Test</i>

Result before this fix:

<i></i>Test

Result after this fix:

<i>Test</i>