Hello, World
March 24th, 2025 — 182 words, 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 an h2
This is an h3
This is an h4
This is an h5
Yes, it looks like everything’s going good.