Editor de Markdown (Vista Previa en Vivo)
Escribe Markdown a la izquierda, ve HTML renderizado a la derecha — copia o descarga cualquiera de los lados.
Respuesta rápida: Editor de Markdown (Vista Previa en Vivo): escribe Markdown a la izquierda y consulta el HTML generado a la derecha; copia o descarga cualquiera de las dos versiones. Funciona íntegramente en el navegador, gratis y sin registro.
Última actualización
Bueno saber
Writing in Markdown with a live preview beside you closes the feedback loop that makes the format pleasant: you type plain text on the left, watch the rendered HTML update on the right, and catch a mangled list or an unbalanced code fence the instant it happens rather than after you paste it into GitHub. This editor renders GitHub-Flavored Markdown via the marked parser, so tables, task lists, fenced code blocks and automatic linking all behave the way they will in a real repository.
The value of GFM specifically is compatibility — what you preview here matches GitHub, GitLab, most static-site generators and note apps like Obsidian. Two habits keep documents portable: leave a blank line before and after block elements like lists and code fences, since parsers are strict about that separation, and specify a language after the opening fence (```js) so code gets proper syntax highlighting wherever it lands.
Everything runs locally, so nothing you draft is uploaded, and the Download .md button saves your work as a plain text file you fully own — there is no cloud sync, which is a feature if you are drafting something sensitive. For the two constructs that are tedious to hand-write, jump to the table generator or the cheatsheet, and when the draft is done, turn it into a shareable document with Markdown to PDF.
Preguntas frecuentes
- ¿Es gratuito el editor de Markdown?
- Sí — gratuito sin registro.
- ¿Qué variante de Markdown?
- Markdown con sabor a GitHub (GFM): tablas, listas de tareas, código encerrado, enlaces automáticos.
- ¿Se suben mis borradores?
- No — todo se ejecuta en tu navegador.
- ¿Puedo guardar mi borrador?
- Usa el botón Descargar .md para guardar localmente; no sincronizamos borradores entre dispositivos.
- ¿Soporta extensiones?
- Solo GFM estándar. Para diagramas, incrusta una imagen o usa Mermaid directamente en tu README de GitHub.