Hello, World
March 24, 2025 — 1 min read
- #offtopic
Yo! This is just a post to test out my blog, mostly the Markdown rendering part. We got bold text, links, code snippets
, and italics, it seems.
This is a block quote, by the way.
Wait, strike-through doesn’t work. Cool, now it does.
// This function checks if a given number is even
function isEven(n: number): boolean {
return n % 2 === 0;
}
Code blocks work too. That’s important.

We got
Tables also seem to work…
Name | Age | Favorite color |
---|---|---|
John | 32 | Green |
Anne | 26 | Red |
Bob | 31 | Yellow |
Hmmm, and lists?
- Foo
- Bar
- Baz
- Foo
- Bar
- Baz
This is a h2 #
This is a h3 #
This is a h4 #
This is a h5 #
Yes, it looks like everything’s going good.