Skip to content

Instantly share code, notes, and snippets.

@obvionaoe
Last active April 26, 2020 00:52
Show Gist options
  • Save obvionaoe/d61d7485c56c028b899b1f4151e44e94 to your computer and use it in GitHub Desktop.
Save obvionaoe/d61d7485c56c028b899b1f4151e44e94 to your computer and use it in GitHub Desktop.
Markdown cheat sheet

Markdown Cheat Sheet

Line breaks

hello\
world

hello
world

Collapsible sections

<details>
  <summary>Click to expand!</summary>
  //this empty line is very important, if you don't leave it empty, the markdown inside the details tag won't be rendered
  #### Heading
  1. A numbered
  2. list
     * With some
     * Sub bullets
</details>
Click to expand!

Heading

  1. A numbered
  2. list
    • With some
    • Sub bullets

Indentation

&nbsp;&nbsp;&nbsp;&nbsp;hey

    hey

Italic/Bold

*italic*
**bold**

italic bold

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment