Markdown

作者: keepanic | 来源:发表于2016-02-28 21:28 被阅读0次

Welcome to Markdown

This is the first markdown document you created by Markdown Editor. Please do not delete this document. You can get help from this document when you need.

Basic

Markdown Editor is a full functional markdown editor. It contains these features:

  1. Create, edit and preview markdown documents.

  2. Sync your documents with Dropbox.

  3. Send your documents to others by email.

This editor use markdown syntax to make your document beautiful and formatted. The syntax is very simple, just like you make plain text.

Markdown Syntax

Heading

----------

Put 1-6 # characters in the beginning of line to make this line as heading line. The 1-6 number of # characters represent the level of heading respectively:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Emphasize

----------

Bold:

Bold Text

Italic:

Italic Text

Link

----------

Link Text

Image

----------

Image Title

List

----------

Ordered List:

  1. First

  2. Second

  3. Third

Unordered List:

  • Item

  • Item

  • Item

Quote

----------

Stay hungry, stay foolish.

Code

----------

Inline Code :foo.go() .

Multiple Line Code:


let app = "Markdown"

print("Good")

```

~~~
TODO
~~~


### Indented Code



----------



4 spaces or 1 tab represent Indented code



This is a normal paragraph.



This is a block

of code.



### Table



----------



A Simple Table:



Heading | Heading | Heading

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

Cell   |  Cell   |  Cell

Cell   |  Cell   |  Cell





You can also add some border if you like:



| Heading | Heading | Heading |

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

|   Cell  |   Cell  |   Cell  |

|   Cell  |   Cell  |   Cell  |



You can control the alignment of the table cell:



Heading | Heading | Heading

:----- | :----: | ------:

Left   | Center | Right

Left   | Center | Right



### Deleteing



----------



~~Strikethrough~~



### Separator



----------



Three types of separator:



---



***



- - -





### Line break



----------



一 add two space or the enter key at the end of line represent a line break:



this line, have two space at the end

this is a new line.

相关文章

网友评论

      本文标题:Markdown

      本文链接:https://www.haomeiwen.com/subject/eicgkttx.html