Add Markdown diagrams and render hooks for code blocks
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Feb 2022 12:04:00 +0000 (13:04 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 24 Feb 2022 17:59:50 +0000 (18:59 +0100)
commit08fdca9d9365eaf1e496a12e2af5e18617bd0e66
tree6c6942d1b74a4160d93a997860bafd52b92025f5
parent2c20f5bc00b604e72b3b7e401fbdbf9447fe3470
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
74 files changed:
common/hugio/writers.go
docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/_default/baseof.html
docs/content/en/content-management/diagrams.md [new file with mode: 0644]
docs/layouts/_default/_markup/render-codeblock-goat.html [new file with mode: 0644]
docs/layouts/_default/_markup/render-codeblock-mermaid.html [new file with mode: 0644]
go.mod
go.sum
helpers/content.go
hugolib/content_render_hooks_test.go
hugolib/integrationtest_builder.go
hugolib/language_content_dir_test.go
hugolib/page.go
hugolib/page__new.go
hugolib/page__per_output.go
hugolib/page_test.go
hugolib/pagebundler_test.go
hugolib/site.go
hugolib/site_sections.go
markup/converter/converter.go
markup/converter/hooks/hooks.go
markup/goldmark/codeblocks/integration_test.go [new file with mode: 0644]
markup/goldmark/codeblocks/render.go [new file with mode: 0644]
markup/goldmark/codeblocks/transform.go [new file with mode: 0644]
markup/goldmark/convert.go
markup/goldmark/convert_test.go
markup/goldmark/integration_test.go
markup/goldmark/internal/render/context.go [new file with mode: 0644]
markup/goldmark/render_hooks.go
markup/goldmark/toc_test.go
markup/highlight/config.go
markup/highlight/highlight.go
markup/internal/attributes/attributes.go [new file with mode: 0644]
markup/markup.go
markup/org/convert.go
output/layout.go
resources/page/site.go
tpl/cast/init_test.go [deleted file]
tpl/collections/init_test.go [deleted file]
tpl/compare/init.go
tpl/compare/init_test.go [deleted file]
tpl/crypto/init_test.go [deleted file]
tpl/data/init_test.go [deleted file]
tpl/debug/init_test.go [deleted file]
tpl/diagrams/diagrams.go [new file with mode: 0644]
tpl/diagrams/init.go [new file with mode: 0644]
tpl/encoding/init_test.go [deleted file]
tpl/fmt/init_test.go [deleted file]
tpl/hugo/init_test.go [deleted file]
tpl/images/init_test.go [deleted file]
tpl/inflect/init_test.go [deleted file]
tpl/lang/init_test.go [deleted file]
tpl/math/init_test.go [deleted file]
tpl/os/init_test.go [deleted file]
tpl/os/os.go
tpl/os/os_test.go
tpl/partials/init_test.go [deleted file]
tpl/path/init_test.go [deleted file]
tpl/reflect/init_test.go [deleted file]
tpl/safe/init_test.go [deleted file]
tpl/site/init_test.go [deleted file]
tpl/strings/init_test.go [deleted file]
tpl/templates/init_test.go [deleted file]
tpl/time/init_test.go [deleted file]
tpl/tplimpl/embedded/templates/_default/_markup/render-codeblock-goat.html [new file with mode: 0644]
tpl/tplimpl/template.go
tpl/tplimpl/template_funcs.go
tpl/tplimpl/template_funcs_test.go
tpl/tplimpl/template_info_test.go [deleted file]
tpl/transform/init_test.go [deleted file]
tpl/transform/remarshal_test.go
tpl/transform/transform.go
tpl/transform/transform_test.go
tpl/transform/unmarshal_test.go
tpl/urls/init_test.go [deleted file]