This website requires JavaScript.
Explore
Help
Sign In
github
/
hugo
Watch
1
Star
0
Fork
You've already forked hugo
0
mirror of
https://github.com/gohugoio/hugo.git
synced
2024-11-14 20:37:55 -05:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
2a231b0b57
hugo
/
docs
/
layouts
/
_default
/
_markup
/
render-codeblock-mermaid.html
5 lines
96 B
HTML
Raw
Normal View
History
Unescape
Escape
Add Markdown diagrams and render hooks for code blocks You can now create custom hook templates for code blocks, either one for all (`render-codeblock.html`) or for a given code language (e.g. `render-codeblock-go.html`). We also used this new hook to add support for diagrams in Hugo: * Goat (Go ASCII Tool) is built-in and enabled by default; just create a fenced code block with the language `goat` and start draw your Ascii diagrams. * Another popular alternative for diagrams in Markdown, Mermaid (supported by GitHub), can also be implemented with a simple template. See the Hugo documentation for more information. Updates #7765 Closes #9538 Fixes #9553 Fixes #8520 Fixes #6702 Fixes #9558
2022-02-17 07:04:00 -05:00
<
div
class
=
"mermaid"
>
CodeblockContext method renames Fixes #9577
2022-02-27 07:31:55 -05:00
{{- .Inner | safeHTML }}
Add Markdown diagrams and render hooks for code blocks You can now create custom hook templates for code blocks, either one for all (`render-codeblock.html`) or for a given code language (e.g. `render-codeblock-go.html`). We also used this new hook to add support for diagrams in Hugo: * Goat (Go ASCII Tool) is built-in and enabled by default; just create a fenced code block with the language `goat` and start draw your Ascii diagrams. * Another popular alternative for diagrams in Markdown, Mermaid (supported by GitHub), can also be implemented with a simple template. See the Hugo documentation for more information. Updates #7765 Closes #9538 Fixes #9553 Fixes #8520 Fixes #6702 Fixes #9558
2022-02-17 07:04:00 -05:00
<
/
div
>
{{ .Page.Store.Set "hasMermaid" true }}
Reference in a new issue
Copy permalink