美文网首页
Hello Markdown

Hello Markdown

作者: TestLzj001 | 来源:发表于2016-09-21 14:11 被阅读0次

H1标题

H2标题

引用一段话


行代码println("Hello Markdown");

代码块
public class TestTimer {
    public static void main(String[] args) {
        Timer timer = new Timer();
        timer.schedule(new TimerTask(){
            public void run() {
                      System.out.println(System.currentTimeMillis());
            }
        }, 1000, 1000);
    }
}

百度一下


*** 表示分割线

我是斜体斜体斜体斜体,我是粗体粗体粗体粗体粗体


表格实例

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

相关文章

网友评论

      本文标题:Hello Markdown

      本文链接:https://www.haomeiwen.com/subject/kqsoettx.html