美文网首页
Markdown使用

Markdown使用

作者: clover_py | 来源:发表于2015-09-25 11:32 被阅读0次

    注:# 和「文字」之间建议保留一个字符的空格,这是最标准的 Markdown 写法。
    更多内容请参考献给写作者的 Markdown 新手指南Markdown——入门指南


    标题

    用法:["#(数目)+空格+内容"]

    一级标题

    二级标题

    三级标题


    列表

    用法:["-或*"]

    • 文本1
    • 文本2

    链接和图片

    用法:["[显示文本 ](链接地址)"]"!["]
    简书


    引用

    用法:[">+空格+内容"]

    名言

    心若不死,梦想不止


    粗体

    用法:[**粗体**][*斜体*]

    粗体-斜体


    表格

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

    用法:

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

    代码

    用法:[`code`]

     import os 
     import time
    
    class new(object):
      name = 'hello'
        #注释
    
      def getName(self):
              return self.name
    

    相关文章

      网友评论

          本文标题:Markdown使用

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