美文网首页
markdown排版示例

markdown排版示例

作者: xunk1900 | 来源:发表于2018-07-01 20:55 被阅读0次

    Guide

    这是一篇讲解如何正确使用Markdown的排版示例

    引用文本:Markdown is a text formatting syntax inspired

    语法指导

    普通内容

    这段内容展示了在内容了里的一些小格式,比如:

    • 加粗 - **加粗**
    • 倾斜 - *倾斜*
    • 删除线 - ~~删除线~~
    • 标记 - 标记
    • 超链接 - [超链接](http://baidu.com)

    标题

    一级标题

    二级标题

    三级标题

    四级标题

    五级标题
    六级标题

    :最多六级标题

    代码块

    普通

    for i in `seq 2000 2018`;do
        echo $i;
        done
    

    语法高亮支持

    如果在```后面跟随语言名称,可以有语法高亮的效果,比如:

    演示Go代码高亮
    package main
    import (
        "fmt"
    )
    
    func main() {
        fmt.Println("hello world!")
    }
    

    Tip:语言名称支持大部分常用的语言

    有序、无序列表

    无序列表

    • Go
      • Gofmt
      • Revel
      • Gin
      • Echo
    • PHP
      • Laravel
      • ThinkPHP

    有序列表

    1. Go
      1. Gofmt
      2. Revel
      3. Gin
      4. Echo
    2. PHP
      1. Laravel
      2. ThinkPHP

    表格

    姓名 性别 电话
    徐宁 3456789
    耀国 987654321
    dog bird cat
    foo foo foo
    bar bar bar
    baz baz baz

    段落

    一个段落前加一个引用即可 自动换行
    This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
    consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
    Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

    区块还可以套用
    This is the first level of quoting.
    This is nested blockquote.
    Back to the first level.

    相关文章

      网友评论

          本文标题:markdown排版示例

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