ppoffice / hexo-theme-hueman

A redesign of Alx's wordpress theme Hueman, ported to Hexo.
http://ppoffice.github.io/hexo-theme-hueman/
GNU General Public License v2.0
1.17k stars 335 forks source link

Align urls in codeblock to the right #245

Closed marcofranssen closed 5 years ago

marcofranssen commented 5 years ago

image

```go main.go https://play.golang.org/p/qBTbYiZezKB playground
package main

import "fmt"

func main() {
     deferExample()
     fmt.Println("Returned from deferExample.")
}

func deferExample() {
     defer fmt.Println("Deferred log.")
     fmt.Println("Print line.")
}