diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-04 16:45:27 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-04 16:45:27 +0200 |
commit | 444d63c7ab0426dfbb8648b31e7b95e875502e81 (patch) | |
tree | a1def2646e08a6213c9f4503fa2594e137ecddb2 | |
parent | 5e46ca558ce13446c092dd9ee6a817837dd3a309 (diff) |
Remove unused shortcode
-rw-r--r-- | layouts/shortcodes/math.html | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/layouts/shortcodes/math.html b/layouts/shortcodes/math.html deleted file mode 100644 index a429888..0000000 --- a/layouts/shortcodes/math.html +++ /dev/null @@ -1,8 +0,0 @@ -{{ if or (hasPrefix .Inner "\n") (hasPrefix .Inner "<p>") }} - $$ - {{ $inner := trim (.Inner | htmlUnescape) "$\n " }} - {{- replace $inner "\n" " " -}} - $$ -{{ else }} - ${{- trim (.Inner | htmlUnescape) "$\n " -}}$ -{{ end }} |