Apply project wide go fmt

This commit is contained in:
Bjørn Erik Pedersen 2015-10-12 20:47:06 +02:00
parent c274e21356
commit 72f14a8202
8 changed files with 28 additions and 29 deletions

View file

@ -98,7 +98,7 @@ func Highlight(code, lang, optsStr string) string {
if lang == "" {
langOpt = "-g" // Try guessing the language
} else {
langOpt = "-l"+lang
langOpt = "-l" + lang
}
cmd := exec.Command(pygmentsBin, langOpt, "-fhtml", "-O", options)