madflow / flow-netbeans-markdown

Markdown file support for the NetBeans IDE
MIT License
279 stars 40 forks source link

Support for code block marker three back ticks (```) #125

Closed vdweij closed 7 years ago

vdweij commented 7 years ago

Many implementations support a code block that is marked with three back ticks (```) next to indenting text. The three backticks also allows for language highlighting.

Although it appears not be part of the initial syntax it is supported by implementations used also by github. For example, this piece:

```groovy def myVar = 'foo' ```

renders:

def myVar = 'foo'

It would be awesome if the plugin also supports this markup

madflow commented 7 years ago

It is supported - but not the inline language highlighting like github does. You have to enable "Fenced Code Blocks" in the plugin options.

vdweij commented 7 years ago

awesome!!!