export default `
# H1 header
## H2 header
### H3 header
#### H4 header
##### H5 header
###### H6 header
# [H1](https://opensea.io/ "H1 link")
## [H2 link](https://opensea.io/ "H2 link")
### [H3 link](https://opensea.io/ "H3 link")
#### [H4 link](https://opensea.io/ "H4 link")
##### [H5 link](https://opensea.io/ "H5 link")
###### [H6 link](https://opensea.io/ "H6 link")
### Characters
----
~~Strikethrough~~ Strikethrough (when enable html tag decode.)
*Italic* _Italic_
**Emphasis** __Emphasis__
***Emphasis Italic*** ___Emphasis Italic___
Superscript: X2,Subscript: O2
###Blockquotes
> Blockquotes
Paragraphs and Line Breaks
> "Blockquotes Blockquotes", [Link](http://opensea.io/)
### Links
[Links](http://opensea.io/)
[Links with title](http://opensea.io/ "link title")
[Reference link][id/name]
[id/name]: http://opensea.io/
### Code Blocks (multi-language) & highlighting
#### Inline code
\`$ npm install marked\`
#### Code Blocks (Indented style)
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 (should be stripped)
\`\`\`html