Skip to content

Prueba de Markdown

Headings

DIferentes tamaños de encabezados

Example:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Text

Se pueden usar negritas e italicas. También se puede el estilo~~strikethrough~~.

Example:

This is a normal text. You can use **bold** and *italic* text. You can also use ~~strikethrough~~ text. 

Lists

Se usa el símbolo -. También con listas numeradas 1. symbol.

Example:

- Item 1
- Item 2
    - Item 2.1
    - Item 2.2
1. Item 1
2. Item 2
    1. Item 2.1
    2. Item 2.2
Example output:

  • Item 1
  • Item 2
    • Item 2.1
    • Item 2.2
  • Item 1
  • Item 2
    1. Item 2.1
    2. Item 2.2

Para crear links se usa [text](link).

Example:

[RoBorregos](
    https://www.roborregos.com
)
Example output: RoBorregos

Images

La estructura para agregar imágenes es ![alt text](image link).

Example:

![RoBorregos Logo](https://github.com/RoBorregos.png)
Example output: RoBorregos Logo

Code

You can add code using the ` symbol. You can also add code blocks using the ``` symbol.

Example:

`print("Hello World")`
Example output: print("Hello World")

Example:

    ```python
    print("Hello World")
    ```
Example output:
print("Hello World")

Tables

You can create tables using the | symbol.

Example:

| Name | Email | Role |
| ---- | ----- | ---- |
| Ivan | [i.wells.ar@gmail.com](mailto:i.wells.ar@gmail.com) | Software Developer, Repo Mantainer and Automatization |

Example output:

Name Email Role
Ivan i.wells.ar@gmail.com Software Developer, Repo Mantainer and Automatization

Quotes

You can create quotes using the > symbol.

Example:

> This is a quote
Example output:

This is a quote

Horizontal Rule

You can create a horizontal rule using the --- symbol.

Example:

---
Example output:


ToDo List

You can create a task list using the - [ ] symbol.

Example:

- [ ] ToDo 
- [x] Done ToDo
Example output:

  • [ ] ToDo
  • [x] Done ToDo