zoukankan      html  css  js  c++  java
  • github的README.md文件格式

    一.在线编辑器:stackedit

    网址:https://stackedit.io/

    README.md是使用Markdown语法。基本规则如下:

    Markdown 语法速查表  
    1 标题与文字格式  
    标题  
    # 这是 H1 <一级标题>  
    ## 这是 H2 <二级标题>  
    ###### 这是 H6 <六级标题>  
    文字格式  
    **这是文字粗体格式**  
    *这是文字斜体格式*  
    ~~在文字上添加删除线~~  
    2 列表  
    无序列表  
    * 项目1  
    * 项目2  
    * 项目3  
    有序列表  
    1. 项目1  
    2. 项目2  
    3. 项目3  
       * 项目1  
       * 项目2  
    3 其它  
    图片  
    ![图片名称](http://gitcafe.com/image.png)  
    链接  
    [链接名称](http://gitcafe.com)  
    引用  
    > 第一行引用文字  
    > 第二行引用文字  
    水平线  
    ***  
    代码  
    `<hello world>`  
    代码块高亮  
    ```ruby  
      def add(a, b)  
        return a + b  
      end  
    ```  
    表格  
      表头  | 表头  
      ------------- | -------------  
     单元格内容  | 单元格内容  
     单元格内容l  | 单元格内容  
    

    二.github测试

    # Files
    
    github update test 
    > test github1
    - test github2
    **test github3!**
    
    ## Create files and folders
    [test github4]
    ```
    test github5
    ```
    $$
    test github6
    $$
    

  • 相关阅读:
    【题解】B进制星球
    高斯消元
    7.16
    题解 P1572 【计算分数】
    7.30
    7.31
    项目中使用 MyBatis(一)
    从整体上了解Spring MVC
    Spring注解
    Spring IOC 和 DI
  • 原文地址:https://www.cnblogs.com/alantao/p/8521929.html
Copyright © 2011-2022 走看看