diff options
| -rw-r--r-- | wiki/features/single-page-parameters.md | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/wiki/features/single-page-parameters.md b/wiki/features/single-page-parameters.md index 4f11e75..b4574ac 100644 --- a/wiki/features/single-page-parameters.md +++ b/wiki/features/single-page-parameters.md @@ -51,16 +51,18 @@ math: true  You may encounter issues rendering complex equations.  This is due to a [known issue](https://discourse.gohugo.io/t/one-of-several-latex-equations-is-not-rendered-by-katex/47790).  -A possible workaround is to wrap your equation in `{{< rawhtml >}}` tags:  +A possible workaround is to wrap your equation in `rawhtml` tags:   ``` -{{< rawhtml >}} +<rawhtml>  $$  ...  $$ -{{< rawhtml >}} +</rawhtml>  ``` +> You must wrap the rawhtml tag in {{ ... }}, omitted due to rendering constraints. +  ## Tags  Create tags associated with the post and decide to show them. | 
