Skip to content

Instantly share code, notes, and snippets.

@hibariya
Created April 23, 2012 04:37
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hibariya/2468897 to your computer and use it in GitHub Desktop.
Save hibariya/2468897 to your computer and use it in GitHub Desktop.
md-syntax

Markdown Syntax Help

See also


Heading

Header Suport h1〜h6

Header1

Header2

Header6
# Header1
## Header2
###### Header6

List

Unorderd List

  • list1
  • list1.1
  • list2
  • list3
- list1
 - list1.1
- list2
- list3

or

+ list1
 + list1.1
+ list2
+ list3

Ordered List

  1. list1
  2. list2
  3. list3
1. list1
2. list2
3. list3

--

Code Blocks

4space or 1 tabstop

code block
    code block

Inline Code

use backticks

use `backticks`

Emphasis

Italics

emphasis or emphasis

*emphasis* or _emphasis_

Boldface

strong emphasis or strong emphasis

**strong emphasis** or __strong emphasis__

Blockquotes

This is Blockquote text. This is Blockquote text.

or

This is Blockquote text. This is Blockquote text.

> This is Blockquote text.
This is Blockquote text.

or

> This is Blockquote text.
> This is Blockquote text.

Horizontal Rules

three or more '-' or '*' or '_'

---
***
___

Links

Inline Link

markdown or markdown

[markdown](http://daringfireball.net/projects/markdown/syntax 'markdown syntax') or
[markdown](http://daringfireball.net/projects/markdown/syntax#)

Wiki Page Link

text or WikiNmae

[[text|WikiName]] or [[WikiName]]

External Link

http://example.com

[[http://example.com]]

Image Link

image

![image](http://foobar.com/wooo.png)

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