快速上手markdown操作

快速上手markdown操作_第1张图片

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题
快速上手markdown操作_第2张图片

无序列表

快速上手markdown操作_第3张图片

有序列表

粗体

斜体

快速上手markdown操作_第4张图片

引用:

This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
This is the first level of quoting.

This is nested blockquote.

Back to the first level.

这是一个标题。

  1. 这是第一行列表项。
  2. 这是第二行列表项。

给出一些例子代码:

return shell_exec("echo $input | $markdown_script");

链接:baidu

图片:
快速上手markdown操作_第5张图片
Mouapp
快速上手markdown操作_第6张图片

表格:

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

快速上手markdown操作_第7张图片

代码插入:

public static boolean test(int i, int val) { System.out.println("test: " + i); System.out.println("result: " + (i < val)); return i < val; }

public static boolean test(int i, int val) {
    System.out.println("test: " + i);
    System.out.println("result: " + (i < val));
    return i < val;
}

你可能感兴趣的:(快速上手markdown操作)