Generador de Tablas Markdown
Construye tablas Markdown con un editor estilo hoja de cálculo y alineación por columna.
Respuesta rápida: Generador de Tablas Markdown: crea tablas Markdown mediante un editor tipo hoja de cálculo y ajusta la alineación de cada columna. Funciona por completo en tu navegador, gratis y sin registro.
Última actualización
Bueno saber
Tables are the one part of Markdown that almost nobody enjoys typing by hand, because the pipes and dashes have to line up conceptually even though the renderer ignores your spacing. The header row, the delimiter row of dashes, and each body row all need the same number of columns, and the alignment is set entirely by where you place colons in that delimiter row: :--- is left, :---: is centered, and ---: is right. This tool writes all of that for you so you only worry about the content.
The generated syntax is GitHub-Flavored Markdown, which is understood by GitHub, GitLab, Notion, Obsidian, Reddit and most static-site engines. Two things do not travel well, though: GFM tables cannot contain block elements like nested lists or multiple paragraphs inside a cell, and they cannot merge cells the way HTML rowspan can. If you need either, you have to drop down to a raw HTML <table>.
When a cell needs a literal pipe character — say, in a keyboard shortcut or a regular expression — escape it as \| so the parser does not read it as a new column boundary. Line breaks inside a cell use <br> rather than a real newline. Once your table is ready, drop it into the Markdown editor to preview it alongside the rest of your document, or keep the cheatsheet open for the surrounding syntax.
Preguntas frecuentes
- ¿Es gratuito el generador de tablas?
- Sí — gratuito sin registro.
- ¿Qué variante de Markdown?
- Markdown con sabor a GitHub — cualquier renderizador que soporte tablas GFM (GitHub, GitLab, Notion, Obsidian, ...) lo renderiza correctamente.
- ¿Se suben mis ediciones?
- No — el editor se ejecuta en tu navegador.
- ¿Puedo importar un CSV?
- No en esta versión. Consejo: usa nuestro Visor de CSV para copiar celdas, luego pégalas aquí.
- ¿Cómo escapo caracteres de tubería en las celdas?
- Usa \| dentro de la celda — esa es la convención GFM.