Przeglądaj źródła

refactor: site.params.math -> site.Params.features.math.enable

BREAKING CHANGE

See #2601
George Cushen 3 lat temu
rodzic
commit
0a6e711f81
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      wowchemy/layouts/partials/site_head.html

+ 2 - 2
wowchemy/layouts/partials/site_head.html

@@ -87,7 +87,7 @@
   {{ end }}
 
   {{/* Config LaTeX math rendering. */}}
-  {{ if or .Params.math site.Params.math }}
+  {{ if or .Params.math site.Params.features.math.enable }}
     {{ $mathjax_config := resources.Get "js/mathjax-config.js" }}
     <script src="{{ $mathjax_config.RelPermalink }}"></script>
   {{ end }}
@@ -180,7 +180,7 @@
       {{ $load := $v.async }}
 
       {{/* Only load MathJax if required. */}}
-      {{ if (eq $k "mathJax") | and (not (or $.Params.math site.Params.math)) }}
+      {{ if (eq $k "mathJax") | and (not (or $.Params.math site.Params.features.math.enable)) }}
         {{ $load = false }}
       {{ end }}