Sublime Forum

Documentation for Markdown code block languages?

#1

I’m trying to find documentation about the built-in Markdown language support, specifically the “code block languages”, i.e. the word “bash” after triple-backticks …

```bash
#!/bin/bash
exit 0
```

Specifically, where can I find a list of what languages are supported and what the highlighting rules are for each language? If it’s in the official or community docs, I’m not seeing it.

Sublime Text build 4126 on macOS 12.4

0 Likes

#2

There’s no dedicated documentation about that in form of a web site.

Hitting ctrl+space after opeining backticks opens auto-completion with a list of all supported syntaxes however.

Basically all syntaxes shipped with Sublime Text are supported.

The following snippet from Markdown syntax shows the list of syntaxes.

3 Likes