Sublime Forum

Markdown syntax highlighting misses soem code blocks

#1

The “Markdown Extended” syntax highlighting has some weak sports with
code blocks.

Works:

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

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

Does not work (used with pandoc’s markdown formatter )

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

#2

presumably you would be better off reporting this on the Markdown Extended package’s issue tracker, the maintainers may not frequent the forum

0 Likes

#3

D’oh, thought this came with Sublime Text

0 Likes

#4

Relevant: https://github.com/sublimehq/Packages/pull/2013

0 Likes