test_markdown

第一节课,把所有markdown功能手动实现一遍。

功能一

已经测试完毕,分别是各级标题,这是第三层测试。

test4

test5
test6
# test7 哈哈 超过六个就不行了

功能二(列表)

无序列表

  • test1
  • test2

有序列表

  1. test1
    2.test2
  2. test3
  3. test1
  4. test1

有序列表需要自行体会

功能三(引用)

这是引用好酷哦

功能四(图片与链接)

链接

测试链接

图片

测试图片

好帅啊,写插件的人好帅,写markdown的人也好帅啊。人类真是渺小。

功能四(粗体与斜体)

粗体
斜体
这是啥

果然尽信书不如无书。。。

功能五(表格)

以下是例子

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

以下是说明

行1标题 标题 行3标题

总结 行列式除了第二行,其他行都是用 | 来区分,并且第二行中间的 : 放到不同位置以为不同的对齐方式

功能六(代码框)

printf("What's next? Enter y to input another calculation, enter n to finish:"); scanf("%c", &command); if(command=='y') goto begining;/*begining在程序的前面*/
ceshi
这是一段代码
测试缩进 缩进1 缩进2 缩进1
缩进2
我的功能
asd
asda

代码框这个感觉有点迷

功能七 (分割线)


*** 华丽的分割线 ***


你可能感兴趣的:(test_markdown)