summary refs log tree commit diff stats
path: root/test/testsite/posts/testfile.md
diff options
context:
space:
mode:
authorAlan Pearce2017-07-03 21:39:43 +0200
committerAlan Pearce2017-07-03 21:55:41 +0200
commite7b08b1dfe3f2a2596deb6e2a72bb79805d3708f (patch)
tree027fda29fe96736d4ac641a1dfe0bfe657d3fd33 /test/testsite/posts/testfile.md
parenta67e38d1a82c95db5bd24183e81b31438f60dd2c (diff)
downloadhomestead-e7b08b1dfe3f2a2596deb6e2a72bb79805d3708f.tar.lz
homestead-e7b08b1dfe3f2a2596deb6e2a72bb79805d3708f.tar.zst
homestead-e7b08b1dfe3f2a2596deb6e2a72bb79805d3708f.zip
feat: Add code block highlighting
Theme is configurable
Diffstat (limited to 'test/testsite/posts/testfile.md')
-rw-r--r--test/testsite/posts/testfile.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/testsite/posts/testfile.md b/test/testsite/posts/testfile.md
index 84d8ed1..d6a4292 100644
--- a/test/testsite/posts/testfile.md
+++ b/test/testsite/posts/testfile.md
@@ -7,3 +7,14 @@ Tags = ["a", "b"]
 Ut enim blandit volutpat maecenas? Volutpat blandit aliquam etiam erat
 velit, scelerisque in dictum non, consectetur a erat nam at lectus
 urna duis convallis convallis tellus, id interdum velit laoreet!
+
+```sh
+#!/usr/bin/env zsh
+
+echo this is some shell code
+
+if [[ -n $test ]]
+then
+    echo test passed
+fi
+```