First Post

Aug 3, 2025

#sveltekit
#svelte
#testing

by Joshua Fouch

Markdown Feature Test

Headers

H1

H2

H3

H4


Text Formatting

  • Italic
  • Bold
  • Bold + Italic
  • Strikethrough
  • Inline code

Lists

Unordered List

  • Item 1
  • Item 2
    • Nested Item 2.1
    • Nested Item 2.2

Ordered List

  1. First
  2. Second
    1. Nested A
    2. Nested B
  3. Third


Images

Alt Text


Blockquotes

This is a blockquote.
With multiple lines.


Code Blocks

Inline

Use print("Hello World") in Python.

Multiline

def greet(name):
    return f"Hello, {name}!"
print(greet("World"))