Formato de texto

El formato de texto en Markdown generalmente requiere caracteres tanto al principio como al final del texto.

Reglas horizontales

You can create a horizontal break to divide your text by placing three (or more) underscores 

___

or asterisks 

***

or hyphens

---

on their own line.

Puede crear un corte horizontal para dividir su texto colocando tres (o más) guiones bajos


o asteriscos


o guiones


en su propia línea.


Puede haber espacios entre los caracteres, y una regla horizontal puede ser seguida inmediatamente por otra:

_ _ _
* * * *
and the spaces don't have to be evenly distributed
*  ****


y los espacios no tienen que estar distribuidos uniformemente


Audaz

El texto en negrita se puede crear rodeando el texto con asteriscos dobles o guiones bajos dobles:

**Bolded text**

__Also bolded text__

Resultado:

Texto en negrita

También texto en negrita

cursiva

Las cursivas se pueden crear rodeando el texto con asteriscos o guiones bajos:

*Italicized text*

_Also italicized_

Resultado:

Texto en cursiva

También en cursiva

tachado

Para crear texto tachado, rodee el texto con ~~tildes dobles~~.

Nota: en StackExchange este formato no está incluido. En su lugar, utilice la etiqueta html <s>text</s>. (En el chat puedes usar ---tres guiones---.)

Negrita + Cursiva

Creating ***bold italic*** text is simply a matter of using both
**bold** (two asterisks) and *italic* (one asterisk) at the same time,
for a total of three asterisks on either side of the text you want to format at once.

Crear texto en negrita y cursiva es simplemente una cuestión de usar ambos bold (two asterisks) and italic (one asterisk) at the same time, for a total of three asterisks on either side of the text you want to format at once.

##HTML Algunas etiquetas HTML también se pueden usar en Markdown.

  • <b>negrita</b> negrita
  • <i>cursiva</i> cursiva
  • <a href="http://stackoverflow.com/">enlace</a> enlace
  • <kbd>Ctrl</kbd> Ctrl

También se pueden utilizar anclas con nombre para facilitar la navegación dentro del documento. Tenga en cuenta que Stack Overflow Markdown no parece admitir esto.

<a name="heading"></a>
# Heading 1
Text under the heading
Click on a link like [Go to Heading 1](#heading1) to go to that named anchor.

Título 1

Texto bajo el encabezado Haga clic en un enlace como [Ir al título 1] (#título1) para ir a ese ancla con nombre.

Subíndice/Superíndice

x<sub>2</sub> produce x2

x<sup>2</sup> produce x2

Saltos de línea y párrafos

Termina una línea con dos o más espacios para crear un salto de línea.

Ending a line with no spaces
or with just one space 
doesn't create a line beak.  
Use two or more spaces   
to create a line break.

Use an empty line to make a new paragraph.

Terminar una línea sin espacios o con un solo espacio no crea un pico de línea. Usar dos o más espacios para crear un salto de línea.

Use una línea vacía para hacer un nuevo párrafo.