美文网首页
MarkDown使用指南

MarkDown使用指南

作者: Longwide | 来源:发表于2015-08-12 17:20 被阅读37次

    标题使用‘##’

    黑体使用'?'

    斜体使用'?'

    无序列表(*-)

    • markdown好用吗?
    • markdown怎么用

    有序列表

    1 . 使用步骤1
    2 . 使用步骤2

    1 .   使用步骤1
    2 .   使用步骤2
    

    引用

      ">"
    

    超链接

    [超链接](www.lgpage.net)
    

    表格

    用户名 密码
    longwide 123

    代码

    public static String stringTempToString(String source,Object rootmap){
            Configuration conf = new Configuration();
            StringTemplateLoader loader = new StringTemplateLoader();
            loader.putTemplate("mytmp", source);
            conf.setTemplateLoader(loader);
            try {
                Template t = conf.getTemplate("mytmp");
                StringWriter out = new StringWriter();
                t.process(t, out);
                return out.toString();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (TemplateException e) {
                e.printStackTrace();
            }
            return null;
        }```
    ###分割线
    ***
    ###脚注[^footnote]
    
    ```flow
    st=>start: 开始
    e=>end: 结束
    op=>operation: 我的操作
    cond=>condition: 确认?
    st->op->cond
    cond(yes)->e
    cond(no)->op```
    
    [拿来主义](http://sspai.com/25137)

    相关文章

      网友评论

          本文标题:MarkDown使用指南

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