[许善祥](https://xushanxiang.com "返回首页") ![](./images/logos/editormd-logo-64x64.png) > 图片加链接 (Image + Link): [![](./images/logos/editormd-logo-32x32.png)](https://xushanxiang.com/editor-md/ "editormd") **目录 (Table of Contents)** [TOCM] [TOC] #### Disabled options - TeX (Based on KaTeX); - Emoji; - Task lists; - HTML tags decode; - Flowchart and Sequence Diagram; #### Editor.md directory editor.md/ lib/ css/ ... ```html <!-- English --> <script src="../dist/js/languages/en.js"></script> ``` #### 标题(用底线的形式)Heading (underline) This is an H1 ============= This is an H2 ------------- 其它 ============= #### 字符效果和横线等 ---- ~~删除线~~
删除线(开启识别HTML标签时)
*斜体字* _斜体字_ **粗体** __粗体__ ***粗斜体*** ___粗斜体___ 上标:X
2
,下标:O
2
**缩写(同HTML的abbr标签)** > 即更长的单词或短语的缩写形式,前提是开启识别HTML标签时,已默认开启 The
HTML
specification is maintained by the
W3C
. #### 引用 Blockquotes > 引用文本 Blockquotes 引用的行内混合 Blockquotes > 引用:如果想要插入空白换行`即
标签`,在插入处先键入两个以上的空格然后回车即可。 #### 科学公式 TeX(KaTeX) $$E=mc^2$$ 行内的公式$$E=mc^2$$行内的公式,行内的$$E=mc^2$$公式。 $$x > y$$ $$\(\sqrt{3x-1}+(1+x)^2\)$$ $$\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))$$ 多行公式: ```math \displaystyle \left( \sum\_{k=1}^n a\_k b\_k \right)^2 \leq \left( \sum\_{k=1}^n a\_k^2 \right) \left( \sum\_{k=1}^n b\_k^2 \right) ``` #### 绘制流程图 Flowchart ```flow st=>start: 用户登陆 op=>operation: 登陆操作 cond=>condition: 登陆成功 Yes or No? e=>end: 进入后台 st->op->cond cond(yes)->e cond(no)->op ``` [========] #### 绘制序列图 Sequence Diagram ```seq Andrew->China: Says Hello Note right of China: China thinks\nabout it China-->Andrew: How are you? Andrew->>China: I am good thanks! ``` #### End