Markdown Test Page

Welcome to the Markdown Test Page! This document showcases common Markdown syntax and elements.

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting

  • Bold: This is bold text.
  • Italic: This is italic text.
  • Strikethrough: This is strikethrough text.
  • Combined italic and bold: This is combined italic and bold text.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item

Images

Avatar

Code

Inline Code

Use console.log('Hello, world!') to print to the console.

Code Block

function greet(name) {
  return `Hello, ${name}!`;
}
console.log(greet('World'));