美文网首页
Markdown常用语法

Markdown常用语法

作者: Petrowell | 来源:发表于2018-08-03 12:01 被阅读0次

    1级标题

    2级标题

    3级标题

    4级标题

    5级标题
    6级标题

    无序列表

    • 文本1
    • 文本2
    • 文本3

    有序标题

    1. 文本1
    2. 文本2
    3. 文本3

    链接和图片插入

    简书

    Petrowell

    引用

    人为什么要学习

    多段引用

    (1) 作为Python语言入门实践课程,为初学Python的同学提供一批高质量的实践习题;
    (2) 中国大学MOOC平台"Python语言程序设计"课程的练习、作业和考核对应平台;
    (3) 《Python语言程序设计基础(第2版)》(教材/工具书)第1-8章内容的课外实践。

    粗体和斜体

    你是谁
    谁是你

    代码引用

    hello world
    print( "hello world")

    画五角星

    import turtle
    turtle.pensize(2)
    turtle.circle(10)
    turtle.circle(40)
    turtle.circle(80)
    turtle.ciecle(160)
    

    表格

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

    ![][1][1]: http://www.baidu.com

    相关文章

      网友评论

          本文标题:Markdown常用语法

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