> ## Documentation Index
> Fetch the complete documentation index at: https://docs.soloent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Sintaxis Markdown

> Texto, títulos y estilos en Markdown estándar

## Títulos

Mejor usados para encabezados de sección.

```md theme={null}
## Títulos
```

### Subtítulos

Mejor usados para encabezados de subsección.

```md theme={null}
### Subtítulos
```

<Tip>
  Cada **título** y **subtítulo** crea un ancla y también aparece en la tabla de contenidos a la derecha.
</Tip>

## Formato de texto

Soportamos la mayoría del formato Markdown. Simplemente añade `**`, `_` o `~` alrededor del texto para formatearlo.

| Estilo  | Cómo escribirlo | Resultado   |
| ------- | --------------- | ----------- |
| Negrita | `**negrita**`   | **negrita** |
| Cursiva | `_cursiva_`     | *cursiva*   |
| Tachado | `~tachado~`     | ~~tachado~~ |

Puedes combinar estos. Por ejemplo, escribe `**_negrita y cursiva_**` para obtener texto ***negrita y cursiva***.

Necesitas usar HTML para escribir texto en superíndice y subíndice. Es decir, añade `<sup>` o `<sub>` alrededor de tu texto.

| Tamaño de texto | Cómo escribirlo          | Resultado              |
| --------------- | ------------------------ | ---------------------- |
| Superíndice     | `<sup>superíndice</sup>` | <sup>superíndice</sup> |
| Subíndice       | `<sub>subíndice</sub>`   | <sub>subíndice</sub>   |

## Enlazar a páginas

Puedes añadir un enlace envolviendo texto en `[]()`. Escribirías `[enlace a google](https://google.com)` para [enlace a google](https://google.com).

Los enlaces a páginas en tu documentación deben ser relativos a la raíz. Básicamente, debes incluir la ruta completa de la carpeta. Por ejemplo, `[enlace a texto](/writing-content/text)` enlaza a la página "Texto" en nuestra sección de componentes.

Los enlaces relativos como `[enlace a texto](../text)` se abrirán más lentamente porque no podemos optimizarlos tan fácilmente.

## Citas en bloque

### Línea única

Para crear una cita en bloque, añade un `>` delante de un párrafo.

> Dorothy followed her through many of the beautiful rooms in her castle.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
```

### Múltiples líneas

> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
```

### LaTeX

Mintlify soporta [LaTeX](https://www.latex-project.org) a través del componente Latex.

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>

```md theme={null}
<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>
```
