aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts/2021-04-09-snippets.md
diff options
context:
space:
mode:
Diffstat (limited to '_posts/2021-04-09-snippets.md')
-rw-r--r--_posts/2021-04-09-snippets.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/_posts/2021-04-09-snippets.md b/_posts/2021-04-09-snippets.md
index f76845a..d3277ed 100644
--- a/_posts/2021-04-09-snippets.md
+++ b/_posts/2021-04-09-snippets.md
@@ -19,3 +19,20 @@ It's pretty simple, just use the corresponding include:
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:
+
+```
+#!/usr/bin/env bash
+
+set -o errexit -o nounset -o pipefail
+
+main() {
+ echo "Hello, world!"
+}
+
+main
+```
+
+Also, some inline code: `./test.sh`!