Guía rápida de Markdown
Referencia de sintaxis Markdown
Headings6
# Heading 1
Largest heading
<h1>Heading 1</h1>## Heading 2
Second level heading
<h2>Heading 2</h2>### Heading 3
Third level heading
<h3>Heading 3</h3>#### Heading 4
Fourth level heading
<h4>Heading 4</h4>##### Heading 5
Fifth level heading
<h5>Heading 5</h5>###### Heading 6
Smallest heading
<h6>Heading 6</h6>Text Formatting5
**bold text**
Use double asterisks or underscores
<strong>bold text</strong>*italic text*
Use single asterisks or underscores
<em>italic text</em>***bold italic***
Combine both
<strong><em>bold italic</em></strong>~~deleted~~
Use double tildes
<del>deleted</del>`code`
Use backticks
<code>code</code>Links & Images4
[text](url)
Text in brackets, URL in parentheses
<a href="url">text</a>[text](url "title")
Add title in quotes
<a href="url" title="title">text</a>
Same as link with ! prefix
<img src="url" alt="alt">
Image with tooltip
<img src="url" alt="alt" title="title">Lists3
- Item 1 - Item 2 - Item 3
Use -, *, or +
<ul><li>Item 1</li><li>Item 2</li><li>Item 3</li></ul>1. First 2. Second 3. Third
Numbers with periods
<ol><li>First</li><li>Second</li><li>Third</li></ol>- Parent - Child - Child
Indent with 2 spaces
Nested list structureBlockquotes & Code4
> Quote text
Use > at start
<blockquote>Quote text</blockquote>> Level 1 >> Level 2
Multiple > for nesting
Nested blockquotes``` code ```
Triple backticks
<pre><code>code</code></pre>```javascript code ```
Add language after backticks
<pre><code class="language-javascript">code</code></pre>Other Elements3
---
Three dashes, asterisks, or underscores
<hr>Line 1 \nLine 2
Two spaces at end of line
Line 1<br>Line 2\*not italic\*
Backslash to escape
*not italic*Tables2
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 |
Pipes separate columns, dashes for header separator
HTML table| Left | Center | Right | |:-----|:------:|------:| | L | C | R |
Colons indicate alignment
Table with alignmentQuick Reference
# - ######Headings**text**Bold*text*Italic[text](url)LinkImage`code`Inline Code- itemUnordered List1. itemOrdered List> quoteBlockquote---Horizontal Rule~~text~~Strikethrough```langCode BlockCómo Usar
- Ingresa tu entrada en el área de texto de arriba
- Selecciona las opciones deseadas
- Haz clic en el botón de procesar para ver los resultados
- Copia el resultado a tu portapapeles
Preguntas Frecuentes
¿Qué es Guía rápida de Markdown?
Referencia interactiva de sintaxis Markdown con ejemplos copiables.
¿Es esta herramienta gratuita?
¡Sí! Todas las herramientas en ToolsKeeper son completamente gratuitas sin limitaciones ni registro requerido.
¿Están seguros mis datos?
Absolutamente. Todo el procesamiento ocurre directamente en tu navegador. Tus datos nunca salen de tu dispositivo ni se envían a ningún servidor.