summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/math.html
diff options
context:
space:
mode:
authoramzrk22020-07-25 18:20:25 +0800
committeramzrk22020-07-25 18:20:25 +0800
commit62ae83b7513c2c6c8bd857b7ed5f9f2f47512b43 (patch)
tree5473f24efe652cd963101943c9b82b55e8d97bd4 /layouts/shortcodes/math.html
parentdef669cf636eaacc7c567192bf1bfb8a362c03e9 (diff)
downloadhugo-theme-fuji-62ae83b7513c2c6c8bd857b7ed5f9f2f47512b43.tar.gz
hugo-theme-fuji-62ae83b7513c2c6c8bd857b7ed5f9f2f47512b43.tar.bz2
hugo-theme-fuji-62ae83b7513c2c6c8bd857b7ed5f9f2f47512b43.zip
Update LaTeX shortcode
Diffstat (limited to 'layouts/shortcodes/math.html')
-rw-r--r--layouts/shortcodes/math.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/layouts/shortcodes/math.html b/layouts/shortcodes/math.html
new file mode 100644
index 0000000..3fcdaa7
--- /dev/null
+++ b/layouts/shortcodes/math.html
@@ -0,0 +1,5 @@
+{{ if len .Params | eq 1 }}
+\( {{- trim .Inner "\n" -}} \)
+{{ else }}
+$$ {{- trim .Inner "\n" -}} $$
+{{ end }} \ No newline at end of file