From d8ed2013a5fff0cf7239d183ab63385ae84494ce Mon Sep 17 00:00:00 2001 From: Olivier Roques Date: Tue, 22 Sep 2020 21:51:35 +0200 Subject: Add KaTeX support --- README.md | 7 +++++++ exampleSite/config.toml | 3 ++- layouts/_default/baseof.html | 3 +++ layouts/partials/math.html | 3 +++ 4 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/math.html diff --git a/README.md b/README.md index 7b59083..af775d2 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ A simple monospaced resume theme for Hugo. It was ported from Jekyll theme ![thumbnail](https://github.com/ojroques/hugo-researcher/blob/master/images/tn.png) ## Installation +This theme uses Sass to generate CSS files so make sure you have the +*extended* Hugo version installed. + Add the theme to your site's `themes` directory: ```bash git submodule add https://github.com/ojroques/hugo-researcher.git themes/researcher @@ -22,5 +25,9 @@ A self-explanatory configuration file is present in [exampleSite/config.toml](https://github.com/ojroques/hugo-researcher/blob/master/exampleSite/config.toml), along the files of a demo website. +You can enable [KaTeX](https://katex.org/) (math typesetting) by including +`math: true` in your content files. Or you can enable it globally by setting +`math` to `true` in your project config. + ## License [GPL-3.0 License](https://github.com/ojroques/hugo-researcher/blob/master/LICENSE) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index e794482..602ea15 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -3,11 +3,12 @@ baseURL = "https://example.com" theme = "researcher" disableKinds = ["taxonomy", "term", "RSS", "sitemap", "robotsTXT"] enableEmoji = true +math = false # enable KaTeX (https://katex.org/) globally [params] author = "Olivier Roques" description = "A simple monospaced resume theme for Hugo." - favicon = "favicon.ico" + favicon = "favicon.ico" # path to a .ico to use as favicon [params.footer] text = "By Olivier Roques" url = "https://github.com/ojroques/hugo-researcher" 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 @@ {{- partial "head.html" . -}} + {{ if or .Params.math .Site.Params.math }} + {{- partial "math.html" . -}} + {{ end }} {{- partial "header.html" . -}}
diff --git a/layouts/partials/math.html b/layouts/partials/math.html new file mode 100644 index 0000000..94a1ae3 --- /dev/null +++ b/layouts/partials/math.html @@ -0,0 +1,3 @@ + + + -- cgit v1.2.3