Files & Configuration

Markdown

What It Is

A simple text format that uses symbols for formatting (# for headings, * for bullets)

Analogy

Writing with shortcuts — `#` means "make this big", `-` means "bullet point"

Try It Out

Markdownexample.md
1# Heading 1
2## Heading 2
3 
4**Bold text** and *italic text*
5 
6- Bullet point 1
7- Bullet point 2
8 
91. Numbered item
102. Another item
11 
12[Link text](https://example.com)
13 
14```javascript
15const code = "syntax highlighted!";
16```