# markdown-render-test **Repository Path**: iuukai/markdown-render-test ## Basic Information - **Project Name**: markdown-render-test - **Description**: markdown 渲染测试 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-26 - **Last Updated**: 2023-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [aaa](aaa) [bbb](/bbb) [ccc](./ccc) [ddd](../ddd) [eee](//eee.com) [fff](../../fff) [ggg](http://www.ggg.com)

test

h4

test

h3

h4

23

h2

123

我展示的是一级标题 ================= 我展示的是二级标题 ----------------- # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 *斜体文本* _斜体文本_ **粗体文本** __粗体文本__ ***粗斜体文本*** ___粗斜体文本___ ~~BAIDU.COM~~ 带下划线文本 [^脚注]脚注 *** * * * ***** - - - ---------- * 第一项 * 第二项 * 第三项 + 第一项 + 第二项 + 第三项 - 第一项 - 第二项 - 第三项 1. 第一项 2. 第二项 3. 第三项 1. 第一项: - 第一项嵌套的第一个元素 - 第一项嵌套的第二个元素 2. 第二项: 1. 第二项嵌套的第一个元素 2. 第二项嵌套的第二个元素 > 最外层 > > 第一层嵌套 > > > 第二层嵌套 > 区块中使用列表 > 1. 第一项 > 2. 第二项 > + 第一项 > + 第二项 > + 第三项 * 第一项 > 菜鸟教程 > 学的不仅是技术更是梦想 * 第二项 >>123 >> 213 <<222 <> ><12 <>21 < >> 123 `var a = 22` ```javascript $(document).ready(function () { alert('RUNOOB'); }); ``` [链接](https://www.baidu.com) 或者 [高级链接]: https://www.baidu.com ![百度 图标](https://www.baidu.com/img/flexible/logo/pc/result.png) ![百度 图标](https://www.baidu.com/img/flexible/logo/pc/result.png "BAIDU") hiaaaa [1]: https://www.baidu.com/img/flexible/logo/pc/result.png | 表头 | 表头 | | ---- | ---- | | 单元格 | 单元格 | | 单元格 | 单元格 | | 左对齐 | 右对齐 | 居中对齐 | | :-----| ----: | :----: | | 单元格 | 单元格 | 单元格 | | 单元格 | 单元格 | 单元格 | 使用 Ctrl+Alt+Del 重启电脑 **文本加粗** \*\* 正常显示星号 \*\* ```md \ 反斜线 ` 反引号 * 星号 _ 下划线 {} 花括号 [] 方括号 () 小括号 # 井字号 + 加号 - 减号 . 英文句点 ! 感叹号 ``` $$ \begin{Bmatrix} a & b \\ c & d \end{Bmatrix} $$ $$ \begin{CD} A @>a>> B \\ @VbVV @AAcA \\ C @= D \end{CD} $$ ```mermaid graph LR A[方形] -->B(圆角) B --> C{条件a} C -->|a=1| D[结果1] C -->|a=2| E[结果2] F[横向流程图] ``` ```mermaid graph TD A[方形] --> B(圆角) B --> C{条件a} C --> |a=1| D[结果1] C --> |a=2| E[结果2] F[竖向流程图] ``` ```flow st=>start: 开始框 op=>operation: 处理框 cond=>condition: 判断框(是或否?) sub1=>subroutine: 子流程 io=>inputoutput: 输入输出框 e=>end: 结束框 st->op->cond cond(yes)->io->e cond(no)->sub1(right)->op ``` ```flow st=>start: 开始框 op=>operation: 处理框 cond=>condition: 判断框(是或否?) sub1=>subroutine: 子流程 io=>inputoutput: 输入输出框 e=>end: 结束框 st(right)->op(right)->cond cond(yes)->io(bottom)->e cond(no)->sub1(right)->op ``` ```sequence 对象A->对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B-->对象A: 我很好(响应) 对象A->对象B: 你真的好吗? ``` ```sequence Title: 标题:复杂使用 对象A->对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B-->对象A: 我很好(响应) 对象B->小三: 你好吗 小三-->>对象A: 对象B找我了 对象A->对象B: 你真的好吗? Note over 小三,对象B: 我们是朋友 participant C Note right of C: 没人陪我玩 ``` ```mermaid %% 时序图例子,-> 直线,-->虚线,->>实线箭头 sequenceDiagram participant 张三 participant 李四 张三->王五: 王五你好吗? loop 健康检查 王五->王五: 与疾病战斗 end Note right of 王五: 合理 食物
看医生... 李四-->>张三: 很好! 王五->李四: 你怎么样? 李四-->王五: 很好! ``` ```mermaid %% 语法示例 gantt dateFormat YYYY-MM-DD title 软件开发甘特图 section 设计 需求 :done, des1, 2014-01-06,2014-01-08 原型 :active, des2, 2014-01-09, 3d UI设计 : des3, after des2, 5d 未来任务 : des4, after des3, 5d section 开发 学习准备理解需求 :crit, done, 2014-01-06,24h 设计框架 :crit, done, after des2, 2d 开发 :crit, active, 3d 未来任务 :crit, 5d 耍 :2d section 测试 功能测试 :active, a1, after des3, 3d 压力测试 :after a1 , 20h 测试报告 : 48h ``` - [ ] todo list item 1 - [x] todo list item 2 123123 - 123123 $$ c = \\pm\\sqrt{a^2 + b^2} $$ aabbracronym
address
appletarea
article
bbasebasefontbdibdobig
blockquote
body
br
canvascaption
center
citecodecolcolgroupdatadatalist
dd
del
details
dfndialogdir
div
dl
dt
emembed
fieldset
figcaption
figure
font
footer
form
frameframeset

h1

h2

h3

h4

h5
h6
head
header

hrhtmliimginputinskbdlegend
  • li
  • link
    main
    mapmarkmenumenuitemmetameternoframesobject
      ol
    optgroupoutput

    p

    parampicture
    .c{display:none}
    aaa
    progressqrprtrubyssamp\x3Cscript>script\x3C/script>
    section
    smallsourcespanstrikestrongsubsummarysupsvgtable
    tbodytdtfootththeadtitletrtrackttu
      ul
    varwbrxmp $$ D(x) = \begin{cases} \lim\limits_{x \to 0} \frac{a^x}{b+c}, & x<3 \\ \pi, & x=3 \\ \int_a^{3b}x_{ij}+e^2 \mathrm{d}x,& x>3 \\ \end{cases} \\ % \f is defined as #1f(#2) using the macro \f\relax{x} = \int_{-\infty}^\infty \f\hat\xi\,e^{2 \pi i \xi x} \,d\xi $$ $$ \int\frac{1}{\sqrt{1-x^{2}}}\mathrm{d}x= \arcsin x +C \begin{array}{c} S= \binom{N}{n},A_{k}=\binom{M}{k}\cdot \binom{N-M}{n-k} \\ P\left ( A_{k}\right ) = \frac{\binom{M}{k}\cdot \binom{N-M}{n-k}}{\binom{N}{n}} \end{array} $$ - 1 - 2 - 3 - 4 - 5 - 6 1. 1 1. 2 1. 3 1. 4 1. 5 1. 6