tpl/transform: Add CanHighlight
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 16:09:11 +0000 (17:09 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 27 Feb 2022 18:51:40 +0000 (19:51 +0100)
Closes #9573

tpl/transform/transform.go
tpl/transform/transform_test.go

index dc7cc0342c0f1bafad797f8686a2259646623f89..48cfaffffe0bb85d4a6ab7ea77303f31db03d4c9 100644 (file)
@@ -18,6 +18,7 @@ import (
        "html"
        "html/template"
 
+       "github.com/alecthomas/chroma/lexers"
        "github.com/gohugoio/hugo/cache/namedmemcache"
        "github.com/gohugoio/hugo/common/herrors"
        "github.com/gohugoio/hugo/markup/converter/hooks"
@@ -90,6 +91,11 @@ func (ns *Namespace) HighlightCodeBlock(ctx hooks.CodeblockContext, opts ...inte
        return hl.HighlightCodeBlock(ctx, optsv)
 }
 
+// CanHighlight returns whether the given language is supported by the Chroma highlighter.
+func (ns *Namespace) CanHighlight(lang string) bool {
+       return lexers.Get(lang) != nil
+}
+
 // HTMLEscape returns a copy of s with reserved HTML characters escaped.
 func (ns *Namespace) HTMLEscape(s interface{}) (string, error) {
        ss, err := cast.ToStringE(s)
index 3ccf1a2700a03426a3ce2c059c7c1cef5739c669..289674bf17691590b811ee09af6fdc3d9d23d522 100644 (file)
@@ -95,6 +95,16 @@ func TestHighlight(t *testing.T) {
        }
 }
 
+func TestCanHighlight(t *testing.T) {
+       t.Parallel()
+
+       c := qt.New(t)
+       ns := &transform.Namespace{}
+
+       c.Assert(ns.CanHighlight("go"), qt.Equals, true)
+       c.Assert(ns.CanHighlight("foo"), qt.Equals, false)
+}
+
 func TestHTMLEscape(t *testing.T) {
        t.Parallel()
        b := hugolib.NewIntegrationTestBuilder(