From 97fa04f2d99b17fddb0c6baf6865a359fc5bd55c Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Fri, 5 Jan 2024 20:10:21 +0200 Subject: [PATCH] Additional language markers --- _posts/2022-11-21-gotosocial-on-fly-io.md | 2 +- _posts/2023-07-24-old-ruby-on-modern-nix.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2022-11-21-gotosocial-on-fly-io.md b/_posts/2022-11-21-gotosocial-on-fly-io.md index 152df56..407bfac 100644 --- a/_posts/2022-11-21-gotosocial-on-fly-io.md +++ b/_posts/2022-11-21-gotosocial-on-fly-io.md @@ -27,7 +27,7 @@ Let's deploy it on [fly.io]. We start by creating a new Fly app. We stick to a generated name and put it into Frankfurt. -```bash +```shell $ mkdir -p Documents/gotosocial-fly $ cd Documents/gotosocial-fly $ fly launch diff --git a/_posts/2023-07-24-old-ruby-on-modern-nix.md b/_posts/2023-07-24-old-ruby-on-modern-nix.md index 29afb75..75451f3 100644 --- a/_posts/2023-07-24-old-ruby-on-modern-nix.md +++ b/_posts/2023-07-24-old-ruby-on-modern-nix.md @@ -81,7 +81,7 @@ I trimmed that down just slightly and swapped in Ruby 2.7 (here's the [list of a The important line is this: -``` +```nix ruby = pkgs."ruby-2.7.8"; ``` @@ -89,7 +89,7 @@ ruby = pkgs."ruby-2.7.8"; Now on to installing it into a shell: -``` +```bash nix develop ```