From 6cfbd7d284cfef3530c8f6d1ecdda9f0f7365f67 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 21 Mar 2022 11:45:55 +0300 Subject: snippets: add highlighted plain snippet --- _posts/2021-04-09-snippets.md | 18 ++++++++++++++++-- 1 file 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`! -- cgit v1.2.3