My Blog

Markdown Guide

Markdown Guide

Markdown is simple and powerful.

Headings

Use # for headings. More # = smaller heading.

Text Formatting

  • Bold with **text**
  • Italic with *text*
  • Code with backticks

Lists

Ordered:

  1. First item
  2. Second item
  3. Third item

Unordered:

  • Bullet point
  • Another point
  • Last point

Links and Images

Link text

Alt text

Code Blocks

const greeting = "Hello World";
console.log(greeting);

Happy writing!