Markup languages -- Markdown & reStructuredText
Category: /knowledge /front_endTags: front_end
Resources
Editors
- FCK Editor, http://www.fckeditor.net/
- TinyMCE, http://tinymce.moxiecode.com/
- WMD, http://wmd-editor.com/
- Markitup, http://markitup.jaysalvat.com/home/
Markdown
Emphasized text
**strong emphasis** (more common) or __strong emphasis__ (e.g., boldface)
*emphasis* or _emphasis_ (more common) (e.g., italics)
注: 斜体在中文里并不常用, 至少我觉得不符合中文阅读习惯, 不推荐
Lists
* An item in a bulleted (unordered) list
* A subitem, indented with 4 spaces
* Another item in a bulleted list
Images
vim snippet: img
![Alt text here](Image URL here "Image title here")
-
or
![Alt text here][imageref] [imageref]: image.url.here "Image title here"
Links
vim snippet: ld, lr
- link text here
- or [link text here][linkref] [linkref]: link.address.here “link title here”