Header

This is an example blog post, with a bunch of source code in different languages and usage of a bunch of Markdown features. We're using the reference MarkdownPage implementation to generate HTML from it.

August is nice

Soft puppy

I regret this text

NameGoodSoft
AugustYesYes
DotYesYes
MadyYesYes
SpotYesYes
TobyYesYes

Quote

  1. Numbered list
  2. Numbered list
fn main() {
	println!("hello, computer!");
}
import gleam/io

fn main() {
	io.println("hello, computer!")
}
const std = @import("std");

fn main() {
	std.log.info("hello, computer!");
}
print("hello, computer!")
#include <iostream>
using std::cout;

auto main() -> int {
	cout << "hello, computer!\n";
}
import (
	"fmt"
)

func main() {
	fmt.Println("hello, computer!")
}
main :: IO ()
main = do
  putstrln "hello, computer!"
module App exposing (main)

import Browser

main : Program () Model Update
main =
    Browser.sandbox
        { init = init
        , update = update
        , view = view
        }