This is a post. The first post. It demonstrates various markdown elements for styling purposes.

Headers and Prose

This is a paragraph of prose. It contains italic text, bold text, and bold italic text. You can also use inline code for technical terms like const or function.

Here’s another paragraph to show spacing. Links look like this and should be styled appropriately.

A Subheading

Subheadings help organize content into logical sections. This section covers lists.

Lists

Here’s an unordered list:

  • First item
  • Second item with bold
  • Third item with code
  • Nested items:
    • Nested one
    • Nested two

And an ordered list:

  1. Step one
  2. Step two
  3. Step three

Code Blocks

Here’s a code block with syntax highlighting:

package main

import "fmt"

func main() {
    message := "Hello, World!"
    fmt.Println(message)
}

And one in JavaScript:

const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

greet("World");

Blockquotes

This is a blockquote. It’s useful for highlighting quotes or important notes.

It can span multiple paragraphs.

Tables

LanguageYearTyping
Go2009Static
JavaScript1995Dynamic
Python1991Dynamic
Rust2010Static

Horizontal Rule

Here’s a horizontal rule:


And that’s the end of the demo content.