Skip to content

Latest commit

 

History

History
88 lines (73 loc) · 1.31 KB

markdown.md

File metadata and controls

88 lines (73 loc) · 1.31 KB

Markdown cheat sheet

Headers

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

This is an <h1> tag 
===================

This is an <h1> 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*

Blockquotes

As Dr. Emmett Brown said:

> Your future hasn’t been written yet. No one’s has.
> Your future is whatever you make it. So make it a good one.

Lists

Unordered

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

Ordered

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

Images

![GitHub Logo](/images/logo.png)

Format:

![Alt Text](url)

Links

[GitHub](http://github.com)

Backslash escapes

Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown formatting syntax.

Markdown provides backslash escapes for the following characters:
\   backslash
`   backtick
*   asterisk
_   underscore
{}  curly braces
[]  square brackets
()  parentheses
#   hash mark
+   plus sign
-   minus sign (hyphen)
.   dot
!   exclamation mark