switch vv := opts.(type) {
case map[string]interface{}:
return applyOptionsFromMap(vv, cfg)
- case string:
- return applyOptionsFromString(vv, cfg)
+ default:
+ s, err := cast.ToStringE(opts)
+ if err != nil {
+ return err
+ }
+ return applyOptionsFromString(s, cfg)
}
- return nil
}
func applyOptionsFromString(opts string, cfg *Config) error {
import (
"html/template"
+ "strings"
"testing"
"github.com/gohugoio/hugo/common/loggers"
// Issue #4179
{`<Foo attr=" < "></Foo>`, "xml", "", `&lt;`},
{tstNoStringer{}, "go", "", false},
+ // Issue #9591
+ {strings.Repeat("AAA \n", 10), "bash", template.HTML("linenos=true,noClasses=false"), "line"},
} {
result, err := ns.Highlight(test.s, test.lang, test.opts)