### Disclaimers
* Pygments is relatively slow and _causes a performance hit when building your site_, but Hugo has been designed to cache the results to disk.
+ * The caching can be turned off by setting the `--ignoreCache` flag to `true`.
* Languages available depends on your Pygments installation.
## Client-side
fs := hugofs.Os()
+ ignoreCache := viper.GetBool("IgnoreCache")
cacheDir := viper.GetString("CacheDir")
var cachefile string
- if cacheDir != "" {
+ if !ignoreCache && cacheDir != "" {
cachefile = filepath.Join(cacheDir, fmt.Sprintf("pygments-%x", hash.Sum(nil)))
exists, err := Exists(cachefile, fs)
str = strings.Replace(str, "</pre>", "</code></pre>", 1)
}
- if cachefile != "" {
+ if !ignoreCache && cachefile != "" {
// Write cache file
if err := WriteToDisk(cachefile, strings.NewReader(str), fs); err != nil {
jww.ERROR.Print(stderr.String())