forked from google/docsy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: add support for GLFM math blocks (google#987)
* feature: add support for GLFM math blocks This add supports for GLFM's math blocks [1] using hugo's Markdown render hooks [2]. [1]: https://docs.gitlab.com/ee/user/markdown.html#math [2]: https://gohugo.io/templates/render-hooks/#render-hooks-for-code-blocks Signed-off-by: Stephan Lachnit <stephanlachnit@debian.org>
- Loading branch information
1 parent
be5da07
commit 123800f
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{{/* set default delimiters */}} | ||
{{ $delimiter_left := "$$" }} | ||
{{ $delimiter_right := "$$" }} | ||
|
||
{{/* override delimiters if set in config file */}} | ||
{{ with $.Page.Site.Params.katex.options.delimiters }} | ||
{{ range first 1 ( where . "display" true ) }} | ||
{{ $delimiter_left = index . "left" }} | ||
{{ $delimiter_right = index . "right" }} | ||
{{ end }} | ||
{{end}} | ||
|
||
{{/* output of equation */}} | ||
<p>{{ $delimiter_left }} | ||
{{ .Inner | safeHTML }} | ||
{{ $delimiter_right }}</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters