diff --git a/content/index.md b/content/index.md index 4c615d2..8e811d5 100644 --- a/content/index.md +++ b/content/index.md @@ -3,6 +3,9 @@ title: My First Post --- - This post has some content. I changed it. +- I've just added a second bullet! + +## Some Python Code ```python def md_to_html( @@ -23,3 +26,18 @@ def md_to_html( ) return renderer.render(ast) ``` + +## Kakoune Script?! + +```kak +declare-option -hidden bool on_server %sh{ + if [ -z "$KAK_ON_SERVER" ]; then + printf 'false' + else + printf 'true' + fi +} + +define-command -override true nop +define-command -override false fail +```