jonschlinkert / sublime-markdown-extended

Top 100 Sublime Text plugin! Markdown syntax highlighter for Sublime Text, with extended support for GFM fenced code blocks, with language-specific syntax highlighting. YAML Front Matter. Works with ST2/ST3. Goes great with Assemble.
https://github.com/jonschlinkert
MIT License
660 stars 96 forks source link

a code-block variant is not supported #195

Open nolange opened 4 years ago

nolange commented 4 years ago

The plugin does not detect code blocks, which are for example used by pandoc's formatter.

``` {.bash}
CLIST=$(schroot -l | sed -n 's,^source:\(.*\-sbuild\)$,\1,p')
for ins in $CLIST; do sbuild-update -udcar $ins; done
```