Markdown

Comienza con Markdown para documentación

TL;DR

Qué: Lenguaje de marcado ligero para crear texto formateado.

Por qué: Escribe docs, READMEs, notas con sintaxis simple que se convierte a HTML.

Quick Start

Encabezados:

# H1 Header
## H2 Header
### H3 Header

Formato de texto:

**bold text**
*italic text*
~~strikethrough~~
`inline code`

Listas:

- Unordered item
- Another item
  - Nested item

1. Ordered item
2. Another item

Enlaces e imágenes:

[Link text](https://example.com)
![Alt text](image.png)

Bloques de código:

```javascript
const greeting = "Hello, World!";
console.log(greeting);
```

Cheatsheet

SintaxisResultado
**bold**bold
*italic*italic
~~strike~~strike
`code`code
[text](url)enlace
![alt](img)imagen
> quotecita
---línea horizontal

Tablas:

| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Listas de tareas (GitHub Flavored):

- [x] Completed task
- [ ] Pending task

Gotchas

Line breaks not working

<!-- Add two spaces at end of line  -->
Line one
Line two

<!-- Or use blank line for paragraph -->
Paragraph one

Paragraph two

Images not showing

<!-- Use relative path -->
![Screenshot](./images/screenshot.png)

<!-- Or absolute URL -->
![Logo](https://example.com/logo.png)

Code block language highlighting

<!-- Specify language after backticks -->
```python
print("Hello")
```

```bash
echo "Hello"
```

Escaping special characters

\* Not italic \*
\# Not a header
\[Not a link\]

Next Steps