summaryrefslogtreecommitdiffstats
path: root/helpers/pygments.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/pygments.go')
-rw-r--r--helpers/pygments.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/helpers/pygments.go b/helpers/pygments.go
index bb7790533..b31c834c6 100644
--- a/helpers/pygments.go
+++ b/helpers/pygments.go
@@ -25,6 +25,7 @@ import (
const pygmentsBin = "pygmentize"
+//HasPygments checks to see if Pygments is installed and available on the system.
func HasPygments() bool {
if _, err := exec.LookPath(pygmentsBin); err != nil {
return false
@@ -32,6 +33,7 @@ func HasPygments() bool {
return true
}
+//Highlight takes some code and returns highlighted code.
func Highlight(code string, lexer string) string {
if !HasPygments() {