From ee5a1bbf44726d062c623d3ed2772d22d562203f Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 6 May 2015 20:55:28 -0400 Subject: [PATCH] Allow 'classprefix' pygments options. --- helpers/pygments.go | 1 + 1 file changed, 1 insertion(+) diff --git a/helpers/pygments.go b/helpers/pygments.go index 11b0f23d4..3f0f90b7a 100644 --- a/helpers/pygments.go +++ b/helpers/pygments.go @@ -122,6 +122,7 @@ func init() { pygmentsKeywords["noclasses"] = true pygmentsKeywords["hl_lines"] = true pygmentsKeywords["linenos"] = true + pygmentsKeywords["classprefix"] = true } func parsePygmentsOpts(in string) (string, error) {