Current section

Files

Jump to
mdex examples posts 2025-02-07-example-post.md
Raw

examples/posts/2025-02-07-example-post.md

%{
title: "This is my first post!",
}
---
# Hello World!
This might be your first blog post!
We can show some nice Elixir code with beautiful code syntax highlighting:
```elixir
defmodule DadJoke do
def random() do
Enum.random([
"Never fight dinosaurs. You’ll get Jurasskicked",
"A lion would never play golf. But a tiger wood",
"What do runners eat? Nothing, cause they fast."
])
end
end
```