Skip to content

Instantly share code, notes, and snippets.

@aaronwhite
Forked from duncanmalashock/README.md
Last active March 22, 2019 16:49
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 aaronwhite/6ee179272035dcbace355e8f253a40f6 to your computer and use it in GitHub Desktop.
Save aaronwhite/6ee179272035dcbace355e8f253a40f6 to your computer and use it in GitHub Desktop.
Blissfully Supported Markdown

Markdown syntax guide

Markdown is a simple way to format plain text without a text editor. Here's what you can do with Markdown:

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Emphasis

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
1. Item 2
1. Item 3
   1. Item 3a
   1. Item 3b

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://www.example.com (will be automatically converted to a link).
[A website](http://www.example.com)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment