- 使用Hugo+Github Pages 搭建个人Blog
|
|
- 代码块和行高亮
```go {hl_lines=[3, “5-6”]} {linenos=table} package main
import “fmt”
func main() { fmt.Println(“Hello, Hugo!”) }
```
效果
|
|
|
|
```go {hl_lines=[3, “5-6”]} {linenos=table} package main
import “fmt”
func main() { fmt.Println(“Hello, Hugo!”) }
```
|
|