Skip to content

Commit

Permalink
Fix typos (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
deining committed Jan 10, 2024
1 parent 2d7ce27 commit 5e15ddb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
- 'latest'
- '0.79.0'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -296,7 +296,7 @@ In addition to this, there are several empty partials you can override to easily

### 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 |
| --------------------------------- | ----------------------------------------------------------- |
Expand Down
3 changes: 3 additions & 0 deletions exampleSite/content.en/docs/shortcodes/katex.md
@@ -1,3 +1,6 @@
---
title: KaTeX
---
# KaTeX

KaTeX shortcode let you render math typesetting in markdown document. See [KaTeX](https://katex.org/)
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content.en/menu/index.md
Expand Up @@ -16,7 +16,7 @@ headless: true
- [Columns]({{< relref "/docs/shortcodes/columns" >}})
- [Expand]({{< relref "/docs/shortcodes/expand" >}})
- [Hints]({{< relref "/docs/shortcodes/hints" >}})
- [KaTex]({{< relref "/docs/shortcodes/katex" >}})
- [KaTeX]({{< relref "/docs/shortcodes/katex" >}})
- [Mermaid]({{< relref "/docs/shortcodes/mermaid" >}})
- [Tabs]({{< relref "/docs/shortcodes/tabs" >}})
<br />
2 changes: 1 addition & 1 deletion layouts/shortcodes/katex.html
@@ -1,5 +1,5 @@
{{- 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 }}" />
<script defer src="{{ "katex/katex.min.js" | relURL }}"></script>
<script defer src="{{ "katex/auto-render.min.js" | relURL }}" onload="renderMathInElement(document.body);"></script>
Expand Down

0 comments on commit 5e15ddb

Please sign in to comment.