forked from Sasserisop/MATH201
fixed curly braces not showing
This commit is contained in:
parent
4b7bd5877f
commit
586e7e902b
|
@ -35,6 +35,9 @@
|
|||
<!--The above command replaces a \\ in content/*.md files with a \\\\ yes it looks silly-->
|
||||
{{ $content := $content | replaceRE "_" "\\_"}}
|
||||
<!-- The above replaces _ with \_ inorder to prevent hugo turning subscripts into <em> tags-->
|
||||
{{ $content := $content | replaceRE "\\{" "\\{" }}
|
||||
{{ $content := $content | replaceRE "\\}" "\\}" }}
|
||||
<!-- the above two commands allow curly braces to show up properly, for example in Laplace transforms. -->
|
||||
<!--
|
||||
====
|
||||
TAGS
|
||||
|
|
Loading…
Reference in New Issue