diff options
Diffstat (limited to '_posts/2021-04-09-snippets.md')
-rw-r--r-- | _posts/2021-04-09-snippets.md | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/_posts/2021-04-09-snippets.md b/_posts/2021-04-09-snippets.md index d3277ed..a320e07 100644 --- a/_posts/2021-04-09-snippets.md +++ b/_posts/2021-04-09-snippets.md @@ -20,8 +20,8 @@ This is another set of snippets: {% include snippets/section.html section_id='world' %} -You can insert a code snippet using the regular Markdown syntax without any -highlighting: +Of course, you can insert a code snippet using the regular Markdown syntax +without any highlighting: ``` #!/usr/bin/env bash @@ -35,4 +35,18 @@ main() { main ``` +The same with highlighting enabled: + +```bash +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail + +main() { + echo "Hello, world!" +} + +main +``` + Also, some inline code: `./test.sh`! |