Introduction to Markdown
Markdown provides formatting on GitHub
You can use it in readme files, tickets, and even to generate the content of websites.
Text formatting
bold text: **bold**
Italic text: _Italic_
Strikethrough text: ~~Strikethrough~~
Quoted text:
>Quoted text:
Headings
Heading 1
Heading 2
Heading 3
``` Code blocks ```
Inline `code`
Inline code
Lists
Unordered list
- unordered
- bullet
- points
Ordered list
- Numbered
- List
Links
[Link to another page](http://www.google.com) : Link to another page
Images

The parenthesis should contain either a url or a local path to an image
For a full list, visit GitHub’s Formatting Guide
