美文网首页
markdown笔记测试

markdown笔记测试

作者: Fulanda | 来源:发表于2017-07-28 09:29 被阅读0次

    这是一markdown建议入门笔记

    例如这是一个一级标题

    这是一个超链接百度

    这是斜体的两种表示方式我斜了我也斜了

    这里可以显示代码

         public int hashCode() {
            int h = hash;
            if (h == 0 && value.length > 0) {
                char val[] = value;
    
                for (int i = 0; i < value.length; i++) {
                    h = 31 * h + val[i];
                }
                hash = h;
            }
            return h;
        }
    

    这下面可以显示一张图


    美丽花儿美丽花儿

    下面可以显示流程图

    st=>start: start:>http://www.baidu.com
    op1=>operation: 操作1
    cond1=>condition: YES or NO?
    sub=>subroutine: 子程序
    e=>end
    

    相关文章

      网友评论

          本文标题:markdown笔记测试

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