Markdown Guide
Markdown Guide
Markdown is simple and powerful.
Headings
Use # for headings. More # = smaller heading.
Text Formatting
- Bold with
**text** - Italic with
*text* Codewith backticks
Lists
Ordered:
- First item
- Second item
- Third item
Unordered:
- Bullet point
- Another point
- Last point
Links and Images
Code Blocks
const greeting = "Hello World";
console.log(greeting);
Happy writing!