+ All Categories
Home > Documents > MARKDOWN Markdown is a way to style text on LISTS ... allows you to use backslash escapes to...

MARKDOWN Markdown is a way to style text on LISTS ... allows you to use backslash escapes to...

Date post: 08-May-2018
Category:
Upload: hoangduong
View: 225 times
Download: 1 times
Share this document with a friend
2
BLOCKQUOTES As Kanye West said: > We're living the future so > the present is our past. As Kanye West said: We're living the future so the present is our past. LISTS Unordered Ordered * Item 1 * Item 2 * Item 2a * Item 2b 1. Item 1 2. Item 2 3. Item 3 * Item 3a * Item 3b BACKSLASH ESCAPES \*literal asterisks\* *literal asterisks* Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown’s formaing 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 MARKDOWN SYNTAX Markdown is a way to style text on the web. You control the display of the document; formaing words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *. 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* IMAGES ![GitHub Logo](/images/logo.png) Format: ![Alt Text](url) LINKS http://github.com - automatic! [GitHub](http://github.com)
Transcript
Page 1: MARKDOWN Markdown is a way to style text on LISTS ... allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown’s

B L O C K Q U O T E S

As Kanye West said:

> We're living the future so

> the present is our past.

As Kanye West said:

We're living the future so the present is our past.

L I S T SUnordered

Ordered

* Item 1

* Item 2

* Item 2a

* Item 2b

1. Item 1

2. Item 2

3. Item 3

* Item 3a

* Item 3b

B A C K S L A S H E S C A P E S

\*literal asterisks\*

*literal asterisks*

Markdown allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown’s forma�ing 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

M A R K D O W NS Y N TA X

Markdown is a way to style text on the web. You control the display of the document; forma�ing words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *.

H E A D E R S

# This is an <h1> tag

## This is an <h2> tag

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

E M P H A S I S

*This text will be italic*

_This will also be italic_

**This text will be bold**

__This will also be bold__

*You **can** combine them*

I M A G E S

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

Format: ![Alt Text](url)

L I N K S

http://github.com - automatic!

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

Page 2: MARKDOWN Markdown is a way to style text on LISTS ... allows you to use backslash escapes to generate literal characters which would otherwise have special meaning in Markdown’s

TA S K L I S T S

- [x] @mentions, #refs, [links](),

**formatting**, and <del>tags</del>

supported

- [x] list syntax required (any

unordered or ordered list supported)

- [x] this is a complete item

- [ ] this is an incomplete item

@mentions, #refs, links, forma�ing, and tags supportedlist syntax required (any unordered or ordered list supported)this is a complete itemthis is an incomplete item

U S E R N A M E @ M E N T I O N S TA B L E S

First Header | Second Header

------------ | -------------

Content cell 1 | Content cell 2

Content column 1 | Content column 2

First Header Second Header

Content cell 1 Content cell 2

Content column 1 Content column 2

G I T H U B F L AV O R E D M A R K D O W N

Typing an @ symbol, followed by a username, will notify that person to come and view the comment. This is called an “@mention”, because you’re mentioning the individual. You can also @mention teams within an organization.

You can create tables by assembling a list of words and dividing them with hyphens - (for the first row), and then separating each column with a pipe | :

F E N C E D C O D E B L O C K S

```javascript

function test() {

console.log("look ma`, no spaces");

}

```

Markdown coverts text with four leading spaces into a code block; with GFM you can wrap your code with ``` to create a code block without the leading spaces. Add an optional language identifier and your code with get syntax highlighting.

E M O J ITo see a list of every image we support, check outwww.emoji-cheat-sheet.com

I S S U E R E F E R E N C E SAny number that refers to an Issue or Pull Request will be automatically converted into a link.

#1

defunkt#1

defunkt/github-flavored-markdown#1

GitHub supports emoji!

:+1: :sparkles: :camel: :tada:

:rocket: :metal: :octocat:

GitHub supports emoji!

GitHub.com uses its own version of the Markdown syntax that provides an additional set of useful features, many of which make it easier to work with content on GitHub.com.

function test() {

console.log("look ma`, no spaces");}


Recommended