跳转至

H1 Header

H2 Header

Characters

Strikethrough Strikethrough (when enable html tag decode.) Italic Italic Emphasis Emphasis Emphasis Italic Emphasis Italic

Superscript: X2,Subscript: O2

Abbreviation(link HTML abbr tag)

High Light

Inline Code

Blockquotes

"Blockquotes Blockquotes", Link

another blockquote

Links

footnote

Here’s a simple footnote, 1 and here’s a longer one. 2

Code Blocks

Inline code

$ npm install marked

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

<!DOCTYPE html>
<html>
    <head>
        <mate charest="utf-8" />
        <title>Hello world!</title>
    </head>
    <body>
        <h1>Hello world!</h1>
    </body>
</html>

Lists

Unordered list

  • Item A
  • Item B
  • Item B 1
  • Item B 2
  • Item B 3

Ordered list

  1. Item A
  2. Item B
  3. Item C

GFM task list

  • GFM task list 1
  • GFM task list 2
  • GFM task list 3
  • GFM task list 3-1
  • GFM task list 3-2
  • GFM task list 3-3

Tables

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 " '

TeX(LaTeX)

\[E=mc^2\]

Inline \(\(E=mc^2\)\) Inline,Inline \(\(E=mc^2\)\) Inline。

\[\(\sqrt{3x-1}+(1+x)^2\)\]
\[\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))\]

FlowChart

st=>start: Login
op=>operation: Login operation
cond=>condition: Successful Yes or No?
e=>end: To admin

st->op->cond
cond(yes)->e
cond(no)->op

Sequence Diagram

Andrew->China: Says Hello 
Note right of China: China thinks\nabout it 
China-->Andrew: How are you? 
Andrew->>China: I am good thanks!

End


  1. This is the first footnote. 

  2. Here's one with multiple paragraphs and code.