Markdown Cheatsheet


Heading

  # H1
  ## H2
  ### H3
  #### H4
  ##### H5
  ###### H6

Emphasized/Italic text

    _Emphasized text_ or *Emphasized text*

Emphasized text

Strikethrough text

    ~~Strikethrough text~~

Strikethrough text

Strong/Bold text

    __Strong text__  
    **Strong text**

Strong text

Strong emphasized text

    ___Strong emphasized text___   
    ***Strong emphasized text***

Strong emphasized text

    [Named Link](http://www.marcelofossrj.com/)  
    http://www.marcelofossrj.com/  
    <http://www.marcelofossrj.com/>

Named Link
http://www.marcelofossrj.com/
http://www.marcelofossrj.com/

To open a link in a new window

[Named Link](http://www.marcelofossrj.com/){:target="_blank"}

Tables

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell

First Header | Second Header ————- | ————- Content Cell | Content Cell Content Cell | Content Cell

Code

In line code

    `code()`

code()

Code block with mentioning the language highlights

```javascript
    var specificLanguage_code =
    {
        "data": {
            "lookedUpPlatform": 1,
            "query": "Kasabian+Test+Transmission",
            "lookedUpItem": {
                "name": "Test Transmission",
                "artist": "Kasabian",
                "album": "Kasabian",
                "picture": null,
                "link": "http://open.spotify.com/track/5jhJur5n4fasblLSCOcrTp"
            }
        }
    }

Bullet list

 * Bullet list
    * Nested bullet
        * Sub-nested bullet etc
 * Bullet list item 2
  • Bullet list
    • Nested bullet
      • Sub-nested bullet etc
  • Bullet list item 2

Numbered list

 1. A numbered list
      1. A nested numbered list
      2. Which is numbered
 2. Which is numbered
  1. A numbered list
    1. A nested numbered list
    2. Which is numbered
  2. Which is numbered

Check box

 - [ ] An uncompleted task
 - [x] A completed task
  • An uncompleted task
  • A completed task

Blockquote

    > Blockquote
    >> Nested Blockquote

Blockquote

Nested blockquote

Horizontal line

  ---

Images

  ![picture alt](http://www.brightlightpictures.com/assets/images/portfolio/thethaw_header.jpg "Title is optional")

picture alt

Foldable text:

    <details>
       <summary>Title 1</summary>
       <p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
    </details>
Title 1

Content 1 Content 1 Content 1 Content 1 Content 1

Title 2

Content 2 Content 2 Content 2 Content 2 Content 2

Hotkey:

  <kbd>⌘F</kbd>

⌘F

⇧⌘F

Hotkey list:

Key Symbol
Option
Control
Command
Shift
Caps Lock
Tab
Esc
Power
Return
Delete
Up
Down
Left
Right

Emoji:

  Code appears between colons :EMOJICODE:

:exclamation: Use emoji icons to enhance text. :+1: Look up emoji codes at emoji-cheat-sheet.com

References

https://www.makeuseof.com/tag/printable-markdown-cheat-sheet/ https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet