mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 03:19:25 +00:00
#117, Update KaTeX shortcode, add displayMode param
This commit is contained in:
parent
b9f45270a0
commit
9fa444757a
@ -2,11 +2,11 @@
|
||||
|
||||
KaTeX shortcode let you render math typesetting in markdown document. See [KaTeX](https://katex.org/)
|
||||
|
||||
## Example
|
||||
## Example
|
||||
{{< columns >}}
|
||||
|
||||
```latex
|
||||
{{</* katex [class="text-center"] */>}}
|
||||
{{</* katex [display] [class="text-center"] */>}}
|
||||
x = \begin{cases}
|
||||
a &\text{if } b \\
|
||||
c &\text{if } d
|
||||
@ -25,3 +25,13 @@ x = \begin{cases}
|
||||
|
||||
{{< /columns >}}
|
||||
|
||||
## Display Mode Example
|
||||
|
||||
Here is some inline example: {{< katex >}}\pi(x){{< /katex >}}, rendered in the same line. And below is `display` example, having `display: block`
|
||||
{{< katex display >}}
|
||||
x = \begin{cases}
|
||||
a &\text{if } b \\
|
||||
c &\text{if } d
|
||||
\end{cases}
|
||||
{{< /katex >}}
|
||||
Text continues here.
|
||||
|
@ -7,7 +7,8 @@
|
||||
{{ .Page.Scratch.Set "katex" true }}
|
||||
{{ end }}
|
||||
|
||||
<p class="katex{{ with .Get "class" }} {{ . }}{{ end }}">
|
||||
$$ {{- .Inner -}} $$
|
||||
</p>
|
||||
|
||||
<span class="katex{{ with .Get "class" }} {{ . }}{{ end }}">
|
||||
{{ if in .Params "display" }}\[{{ else }}\({{ end -}}
|
||||
{{ $.Inner }}
|
||||
{{- if in .Params "display" }}\]{{ else }}\){{ end }}
|
||||
</span>
|
||||
|
Loading…
Reference in New Issue
Block a user