gopherd / gopherd.github.io

gopherd.com website
0 stars 0 forks source link

网站: gopherd.com

撰写说明

代码块标注

通过 markdown 的代码块语法可以在网站中使用代码块,并且在语言参数后面可以添加代码块标注参数,格式如下:

lang {[code="[program]+<modes>[,<tags>]"] [html attributes added to hightlight element]}

比如:

code="-"         // 忽略的代码块
code="+b"        // 错误且会被忽略的代码块(默认程序为 main)
code="+e"        // 错误但不可忽略的代码块(默认程序为 main)
code="+x"        // 可运行的代码块(默认程序为 main)
code="+xw"       // 可运行且可编辑的代码块(默认程序为 main)
code="main"      // 属于程序 main 的代码块
code="main+b"    // 属于程序 main 的错误的代码块
code="main+x"    // 属于程序 main 的可运行代码块
code="main+xw"   // 属于程序 main 的可运行且可编辑的代码块
code="other"     // 属于程序 other 的代码块
code="other+b"   // 属于程序 other 的错误的代码块
code="other+x"   // 属于程序 other 的可运行代码块
code="other+xw"  // 属于程序 other 的可运行且可编辑的代码块

一个典型的代码块标注例子

func main() {
    fmt.Println("hello")
}

网站设计

网站主打 go 学习社区。主要提供以下服务

TODO

posts

tools