Referencia de Markdown
Una referencia imprimible que cubre cada construcción común de Markdown — encabezados, listas, tablas, código y más.
Respuesta rápida: Referencia de Markdown: guía imprimible que reúne todos los elementos habituales de Markdown: encabezados, listas, tablas, código y mucho más. Funciona por completo en el navegador, gratis y sin registro.
Última actualización
Bueno saber
Markdown started as one person's shorthand for writing HTML by hand, and that heritage still shows: the syntax deliberately mirrors how people already format plain-text emails. Underlining a line with equals signs makes an H1, asterisks around a word make it bold, and a greater-than sign starts a blockquote. Because the rules are so few, most of what trips people up is whitespace — a list needs a blank line before it, and a hard line break needs two trailing spaces (or a backslash in newer parsers).
The single biggest source of confusion is that there is no one Markdown. This reference targets GitHub-Flavored Markdown (GFM), which adds tables, task lists, strikethrough and automatic URL linking on top of the original CommonMark spec. Plain CommonMark, the version used by many static-site generators, does not understand pipe tables or - [ ] checkboxes, so a snippet that renders perfectly in a GitHub issue can look broken in a different tool.
Keep a couple of escape rules handy. To show a literal asterisk, underscore or backtick rather than have it interpreted, put a backslash in front of it. To embed code that itself contains backticks, wrap it in a longer run of backticks than the code uses. When you are ready to move past a static reference and actually draft something, the live Markdown editor shows your rendered output side by side, and the table generator handles the one construct that is genuinely tedious to type by hand.
Preguntas frecuentes
- ¿Es la hoja de trucos gratuita?
- Sí — gratuita sin registro.
- ¿Qué sabor cubre?
- Markdown con sabor a GitHub — el estándar de facto.
- ¿Puedo imprimirla?
- Sí — usa el diálogo de impresión de tu navegador. El diseño es amigable para tamaños A4 y Letter.
- ¿Se guardan mis pulsaciones de teclas?
- Nada aquí es interactivo más allá de la navegación — no hay nada que guardar.
- ¿Dónde puedo aprender más?
- La documentación de GitHub y la especificación de CommonMark son excelentes lecturas siguientes.