Fix typos (#575)
This commit is contained in:
parent
2d7ce27f77
commit
5e15ddb4f4
5 changed files with 7 additions and 4 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
- 'latest'
|
- 'latest'
|
||||||
- '0.79.0'
|
- '0.79.0'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: true # Fetch Hugo themes (true OR recursive)
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
||||||
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
||||||
|
|
|
@ -296,7 +296,7 @@ In addition to this, there are several empty partials you can override to easily
|
||||||
|
|
||||||
### Plugins
|
### Plugins
|
||||||
|
|
||||||
There are a few features implemented as plugable `scss` styles. Usually these are features that don't make it to the core but can still be useful.
|
There are a few features implemented as pluggable `scss` styles. Usually these are features that don't make it to the core but can still be useful.
|
||||||
|
|
||||||
| Plugin | Description |
|
| Plugin | Description |
|
||||||
| --------------------------------- | ----------------------------------------------------------- |
|
| --------------------------------- | ----------------------------------------------------------- |
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
title: KaTeX
|
||||||
|
---
|
||||||
# KaTeX
|
# KaTeX
|
||||||
|
|
||||||
KaTeX shortcode let you render math typesetting in markdown document. See [KaTeX](https://katex.org/)
|
KaTeX shortcode let you render math typesetting in markdown document. See [KaTeX](https://katex.org/)
|
||||||
|
|
|
@ -16,7 +16,7 @@ headless: true
|
||||||
- [Columns]({{< relref "/docs/shortcodes/columns" >}})
|
- [Columns]({{< relref "/docs/shortcodes/columns" >}})
|
||||||
- [Expand]({{< relref "/docs/shortcodes/expand" >}})
|
- [Expand]({{< relref "/docs/shortcodes/expand" >}})
|
||||||
- [Hints]({{< relref "/docs/shortcodes/hints" >}})
|
- [Hints]({{< relref "/docs/shortcodes/hints" >}})
|
||||||
- [KaTex]({{< relref "/docs/shortcodes/katex" >}})
|
- [KaTeX]({{< relref "/docs/shortcodes/katex" >}})
|
||||||
- [Mermaid]({{< relref "/docs/shortcodes/mermaid" >}})
|
- [Mermaid]({{< relref "/docs/shortcodes/mermaid" >}})
|
||||||
- [Tabs]({{< relref "/docs/shortcodes/tabs" >}})
|
- [Tabs]({{< relref "/docs/shortcodes/tabs" >}})
|
||||||
<br />
|
<br />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{{- if not (.Page.Scratch.Get "katex") -}}
|
{{- if not (.Page.Scratch.Get "katex") -}}
|
||||||
<!-- Include katext only first time -->
|
<!-- Include katex only first time -->
|
||||||
<link rel="stylesheet" href="{{ "katex/katex.min.css" | relURL }}" />
|
<link rel="stylesheet" href="{{ "katex/katex.min.css" | relURL }}" />
|
||||||
<script defer src="{{ "katex/katex.min.js" | relURL }}"></script>
|
<script defer src="{{ "katex/katex.min.js" | relURL }}"></script>
|
||||||
<script defer src="{{ "katex/auto-render.min.js" | relURL }}" onload="renderMathInElement(document.body);"></script>
|
<script defer src="{{ "katex/auto-render.min.js" | relURL }}" onload="renderMathInElement(document.body);"></script>
|
||||||
|
|
Loading…
Reference in a new issue