added support for rendering \, and rebuilt css files
This commit is contained in:
parent
19b962c219
commit
0b0a514216
|
@ -178,7 +178,7 @@ code {
|
|||
overflow-x: hidden; }
|
||||
|
||||
u {
|
||||
text-decoration: none;
|
||||
text-decoration: underline;
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, var(--accent-text-color) 50%);
|
||||
background-repeat: repeat-x;
|
||||
background-size: 2px 2px;
|
||||
|
|
|
@ -37,7 +37,10 @@
|
|||
<!-- 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. -->
|
||||
<!-- the above two commands allow curly braces to show up properly, for example in Laplace
|
||||
transforms. -->
|
||||
{{ $content := $content | replaceRE "\\," "\\," }}
|
||||
<!-- the above commands helps with keeping the perserving "\," Often used in integrals to make a small gap before the dx term.-->
|
||||
<!--
|
||||
====
|
||||
TAGS
|
||||
|
|
Loading…
Reference in New Issue