Ver comentarios en el archivo Raw
Nota: Son muy importantes los saltos de linea después de cada elemento.
# Encabezado 1
## Encabezado 2
| const emojis = [ | |
| '👨🏻💻', | |
| '🤯', | |
| '🤓', | |
| '😎', | |
| '🤙🏼', | |
| '🦄', | |
| '⚡️', | |
| '✨', | |
| '🥑', |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>BigO Notation</title> | |
| </head> |
| {"lastUpload":"2018-09-21T16:24:15.386Z","extensionVersion":"v3.1.2"} |
I hereby claim:
To claim this, I am signing this object:
| module.exports = function(grunt) { | |
| require('load-grunt-tasks')(grunt); | |
| grunt.initConfig({ | |
| clean: { | |
| js: ['static/build/js'], | |
| css: ['static/css/style.css', 'static/css/vendor/style-autoprefixer.css', 'static/build/css'] | |
| }, | |
| stylus: { |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |