From 61de00cafa58ae12ef425728e38a109f90707c7e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 5 Jun 2021 17:05:39 +0300 Subject: add plain code snippets to posts --- _posts/2021-04-09-snippets.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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`! -- cgit v1.2.3