Last active
December 1, 2019 04:58
-
-
Save justinmoon/1da2911b92a01ba53660f9bf77099014 to your computer and use it in GitHub Desktop.
markdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Features | |
- Support Standard Markdown / CommonMark and GFM(GitHub Flavored Markdown); | |
- Full-featured: Real-time Preview, Image (cross-domain) upload, Preformatted text/Code blocks/Tables insert, Code fold, Search replace, Read only, Themes, Multi-languages, L18n, HTML entities, Code syntax highlighting...; | |
- Markdown Extras : Support ToC (Table of Contents), Emoji, Task lists, @Links...; | |
- Compatible with all major browsers (IE8+), compatible Zepto.js and iPad; | |
- Support identification, interpretation, fliter of the HTML tags; | |
- Support TeX (LaTeX expressions, Based on KaTeX), Flowchart and Sequence Diagram of Markdown extended syntax; | |
- Support AMD/CMD (Require.js & Sea.js) Module Loader, and Custom/define editor plugins; | |
# Editor.md | |
 | |
      | |
**Table of Contents** | |
[TOCM] | |
[TOC] | |
#H1 header | |
##H2 header | |
###H3 header | |
####H4 header | |
#####H5 header | |
######H6 header | |
#Heading 1 link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
##Heading 2 link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
###Heading 3 link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
####Heading 4 link [Heading link](https://github.com/pandao/editor.md "Heading link") Heading link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
#####Heading 5 link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
######Heading 6 link [Heading link](https://github.com/pandao/editor.md "Heading link") | |
##Headers (Underline) | |
H1 Header (Underline) | |
============= | |
H2 Header (Underline) | |
------------- | |
###Characters | |
---- | |
~~Strikethrough~~ <s>Strikethrough (when enable html tag decode.)</s> | |
*Italic* _Italic_ | |
**Emphasis** __Emphasis__ | |
***Emphasis Italic*** ___Emphasis Italic___ | |
Superscript: X<sub>2</sub>,Subscript: O<sup>2</sup> | |
**Abbreviation(link HTML abbr tag)** | |
The <abbr title="Hyper Text Markup Language">HTML</abbr> specification is maintained by the <abbr title="World Wide Web Consortium">W3C</abbr>. | |
###Blockquotes | |
> Blockquotes | |
Paragraphs and Line Breaks | |
> "Blockquotes Blockquotes", [Link](http://localhost/)。 | |
###Links | |
[Links](http://localhost/) | |
[Links with title](http://localhost/ "link title") | |
`<link>` : <https://github.com> | |
[Reference link][id/name] | |
[id/name]: http://link-url/ | |
GFM a-tail link @pandao | |
###Code Blocks (multi-language) & highlighting | |
####Inline code | |
`$ npm install marked` | |
####Code Blocks (Indented style) | |
Indented 4 spaces, like `<pre>` (Preformatted Text). | |
<?php | |
echo "Hello world!"; | |
?> | |
Code Blocks (Preformatted text): | |
| First Header | Second Header | | |
| ------------- | ------------- | | |
| Content Cell | Content Cell | | |
| Content Cell | Content Cell | | |
####Javascript | |
```javascript | |
function test(){ | |
console.log("Hello world!"); | |
} | |
(function(){ | |
var box = function(){ | |
return box.fn.init(); | |
}; | |
box.prototype = box.fn = { | |
init : function(){ | |
console.log('box.init()'); | |
return this; | |
}, | |
add : function(str){ | |
alert("add", str); | |
return this; | |
}, | |
remove : function(str){ | |
alert("remove", str); | |
return this; | |
} | |
}; | |
box.fn.init.prototype = box.fn; | |
window.box =box; | |
})(); | |
var testBox = box(); | |
testBox.add("jQuery").remove("jQuery"); | |
``` | |
####HTML code | |
```html | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<mate charest="utf-8" /> | |
<title>Hello world!</title> | |
</head> | |
<body> | |
<h1>Hello world!</h1> | |
</body> | |
</html> | |
``` | |
###Images | |
Image: | |
 | |
> Follow your heart. | |
 | |
> 图为:厦门白城沙滩 Xiamen | |
图片加链接 (Image + Link): | |
[](https://pandao.github.io/editor.md/examples/images/7.jpg "李健首张专辑《似水流年》封面") | |
> 图为:李健首张专辑《似水流年》封面 | |
---- | |
###Lists | |
####Unordered list (-) | |
- Item A | |
- Item B | |
- Item C | |
####Unordered list (*) | |
* Item A | |
* Item B | |
* Item C | |
####Unordered list (plus sign and nested) | |
+ Item A | |
+ Item B | |
+ Item B 1 | |
+ Item B 2 | |
+ Item B 3 | |
+ Item C | |
* Item C 1 | |
* Item C 2 | |
* Item C 3 | |
####Ordered list | |
1. Item A | |
2. Item B | |
3. Item C | |
---- | |
###Tables | |
First Header | Second Header | |
------------- | ------------- | |
Content Cell | Content Cell | |
Content Cell | Content Cell | |
| First Header | Second Header | | |
| ------------- | ------------- | | |
| Content Cell | Content Cell | | |
| Content Cell | Content Cell | | |
| Function name | Description | | |
| ------------- | ------------------------------ | | |
| `help()` | Display the help window. | | |
| `destroy()` | **Destroy your computer!** | | |
| Item | Value | | |
| --------- | -----:| | |
| Computer | $1600 | | |
| Phone | $12 | | |
| Pipe | $1 | | |
| Left-Aligned | Center Aligned | Right Aligned | | |
| :------------ |:---------------:| -----:| | |
| col 3 is | some wordy text | $1600 | | |
| col 2 is | centered | $12 | | |
| zebra stripes | are neat | $1 | | |
---- | |
####HTML entities | |
© & ¨ ™ ¡ £ | |
& < > ¥ € ® ± ¶ § ¦ ¯ « · | |
X² Y³ ¾ ¼ × ÷ » | |
18ºC " ' | |
##Escaping for Special Characters | |
\*literal asterisks\* | |
##Markdown extras | |
###GFM task list | |
- [x] GFM task list 1 | |
- [x] GFM task list 2 | |
- [ ] GFM task list 3 | |
- [ ] GFM task list 3-1 | |
- [ ] GFM task list 3-2 | |
- [ ] GFM task list 3-3 | |
- [ ] GFM task list 4 | |
- [ ] GFM task list 4-1 | |
- [ ] GFM task list 4-2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment