dfejza.com

Hello World

Hello World

This is a placeholder blog post to test the markdown rendering pipeline.

Code Example

Here's a TypeScript function with syntax highlighting:

interface User {
  id: string
  name: string
  email: string
}
 
function greetUser(user: User): string {
  return `Hello, ${user.name}!`
}
 
const user: User = {
  id: "1",
  name: "World",
  email: "hello@world.com"
}
 
console.log(greetUser(user))

More Content

Some regular paragraph text to test prose styling. This should have proper line height, spacing, and color that works with the dark theme.

  • List item one
  • List item two
  • List item three

This is a blockquote to test that styling as well.

Inline Code

You can also use inline code like this in paragraphs.