hagenburger / pimd

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

Source code with three back-ticks is rendered as code #87

Closed sanjaay closed 5 years ago

sanjaay commented 5 years ago

I seems that source code without a language provided is actually rendered instead of displayed as test.

Right Following Markdown is displayed as source code correct (with a language provided):

``` html
<html>
  <button>button</button>
</html>

**Wrong**
Following Markdown is **not** displayed as source code (with no language provided):. 
In this case the actual button is rendered:
<html>
  <button>button</button>
</html>
benevbright commented 5 years ago

Thanks for the issue :) Can you give us more information including which plugins are you using and its version?

hagenburger commented 5 years ago

@benevbright we need to check if it’s still happening in master. I also need to release a new version.

sanjaay commented 5 years ago

Hi this issue was solved with the latest version. Thank you