forked from Sasserisop/MATH201
Merge branch 'master' of https://git.sasserisop.com/Sasserisop/MATH201
This commit is contained in:
commit
69bb6303a9
|
@ -178,7 +178,7 @@ code {
|
||||||
overflow-x: hidden; }
|
overflow-x: hidden; }
|
||||||
|
|
||||||
u {
|
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-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, var(--accent-text-color) 50%);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
background-size: 2px 2px;
|
background-size: 2px 2px;
|
||||||
|
|
|
@ -37,7 +37,10 @@
|
||||||
<!-- The above replaces _ with \_ inorder to prevent hugo turning subscripts into <em> tags-->
|
<!-- The above replaces _ with \_ inorder to prevent hugo turning subscripts into <em> tags-->
|
||||||
{{ $content := $content | replaceRE "\\{" "\\{" }}
|
{{ $content := $content | replaceRE "\\{" "\\{" }}
|
||||||
{{ $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
|
TAGS
|
||||||
|
|
Loading…
Reference in New Issue