A sidenote with bold text, italic,
inline code, and a list:
January 2, 2026
Shortcode
Gallery
Testing the image gallery shortcode with 5 images:
Ruby
Testing the ruby annotation shortcode:
明
日
日
本
語
CJK Emphasis
Testing the CJK emphasis shortcode:
Continue reading →
January 1, 2026
Haskell
A snippet with pragma,
operator{.haskell}, emphasis{.haskell}, and a
deleted bit.
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wall #-}
module Main (main) where
import Data.Text (Text)
import qualified Data.Text as T
-- | Greet someone by name
greet :: Text -> Text
greet name = "Hello, " <> name <> "!"
main :: IO ()
main = do
let x = 42 :: Int
putStrLn $ T.unpack $ greet "World"
Python
A Python snippet.
Continue reading →