Skip to content

Instantly share code, notes, and snippets.

@elyager
Last active March 30, 2018 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elyager/1361652daedf17bdf92fc77962dee21b to your computer and use it in GitHub Desktop.
Save elyager/1361652daedf17bdf92fc77962dee21b to your computer and use it in GitHub Desktop.

Ver comentarios en el archivo Raw

Nota: Son muy importantes los saltos de linea después de cada elemento.

# Encabezado 1

Encabezado 1

## Encabezado 2

Encabezado 2

### Encabezado 3

Encabezado 3

#### Encabezado 4

Encabezado 4

##### Encabezado 5
Encabezado 5
###### Encabezado 6
Encabezado 6

Cursivas

*Este texto está en cursivas*

Este texto está en cursivas

_Este texto está en cursivas_

Este texto está en cursivas

Negritas

**Este texto está en negritas usando**

Este texto está en negritas usando

__Este texto está en negritas usando__

Este texto está en negritas usando

~~Este texto está tachado~~

Este texto está tachado

Linea horizontal

---

___

Blockquotes

>Whenever you find yourself on the side of the majority, it’s time >to pause and reflect.
>
>  \- Mark Twain

Whenever you find yourself on the side of the majority, it’s time >to pause and reflect.

- Mark Twain

Listas

No numeradas

  * Item 1
  * Item 2
  * Item 3
    * Nested Item 1
    * Nested Item 2

  
  - Item 1
  - Item 2
  - Item 3
    - Nested Item 1
    - Nested Item 2
  • Item 1
  • Item 2
  • Item 3
    • Nested Item 1
    • Nested Item 2
  • Item 1
  • Item 2
  • Item 3
    • Nested Item 1
    • Nested Item 2

Numeradas

1. Item 1
1. Item 2
1. Item 3
  1. Item 1
  2. Item 2
  3. Item 3

Bloques de Código tipo inline (en linea)

<p>This is a paragraph</p>

Links

[BlogDelYager](http://blog.elyager.com/)

BlogDelYager

[BlogDelYager](http://blog.elyager.com/ "El Tooltip")

BlogDelYager

Imágenes

  ![Homero](https://c1.staticflickr.com/8/7415/11840600026_a2fc62d589_b.jpg)

Homero

Tablas

Name | Email
-------|---------
Antonio | garcia@outlook.com
Antonio | garcia@outlook.com
Antonio | garcia@outlook.com
Name Email
Antonio garcia@outlook.com
Antonio garcia@outlook.com
Antonio garcia@outlook.com

Agregados de Github

Bloques de Código con sintaxis remarcada

  ```bash
    npm install

    npm start
  ```

  ```javascript
    function add(num1, num2) {
      return num1 + num2;
    }
  ```

  ```python
    def add(num1, num2):
      return num1 + num2
  ```
  npm install

  npm start
  function add(num1, num2) {
    return num1 + num2;
  }
  def add(num1, num2):
    return num1 + num2

Tareas con Checkboxes

* [x] Task 1
* [x] Task 2
* [ ] Task 3
  • Task 1
  • Task 2
  • Task 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment