input, expected string
}
data := []test{
- {true, "<html></html>", "<div class=\"highlight\"><pre><span class=\"nt\"><html></html></span>\n</pre></div>\n"},
+ {true, "<html></html>", "<div class=\"highlight\"><pre><code class=\"language-html\" data-lang=\"html\"><span class=\"nt\"><html></html></span>\n</code></pre></div>\n"},
{false, "<html></html>", "<pre><code class=\"language-html\"><html></html></code></pre>\n"},
}
return code
}
+ str := out.String()
+
+ // inject code tag into Pygments output
+ if lang != "" && strings.Contains(str, "<pre>") {
+ codeTag := fmt.Sprintf(`<pre><code class="language-%s" data-lang="%s">`, lang, lang)
+ str = strings.Replace(str, "<pre>", codeTag, 1)
+ str = strings.Replace(str, "</pre>", "</code></pre>", 1)
+ }
+
if cachefile != "" {
// Write cache file
- if err := WriteToDisk(cachefile, bytes.NewReader(out.Bytes()), fs); err != nil {
+ if err := WriteToDisk(cachefile, strings.NewReader(str), fs); err != nil {
jww.ERROR.Print(stderr.String())
}
}
- return out.String()
+ return str
}
var pygmentsKeywords = make(map[string]bool)