diff options
author | Olivier Roques <ojroques@users.noreply.github.com> | 2020-09-22 21:54:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 21:54:41 +0200 |
commit | ed987fa67df89d3f712eaf63ec8e6e10c7679a78 (patch) | |
tree | ebc1526103028bbbd6e9f2a89cd7671defdc1902 /layouts/_default | |
parent | ae69b114acf36e7834ff9570ec67df44559251ee (diff) | |
parent | 09c2ed7f45b044543cb8d1fe49b720b8a1b6972d (diff) |
Merge pull request #2 from ojroques/katex
Add KaTeX support
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/baseof.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 5f8e2ec..86eee86 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,6 +1,9 @@ <!DOCTYPE html> <html> {{- partial "head.html" . -}} + {{ if or .Params.math .Site.Params.math }} + {{- partial "math.html" . -}} + {{ end }} <body> {{- partial "header.html" . -}} <div id="content"> |