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:
- Create, edit and previrw markdown documents.
- Sync your documents with Dropbox.
- 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 begining 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
Image
List
Ordered List:
- First
- Second
- Third
Unordered List:
- Item
- Item
- Item
Quote
Stay hungry, stay foolish.
Code
Inline Code :foo.go() .
Multiple Line Code:
let app = "Markdown"
print("Good")
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.