From 5509954c7e8b0ce8d5ea903b0ab639ea14b69acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 28 Dec 2019 12:07:23 +0100 Subject: hugolib: Fix inline shortcode regression Fixes #6677 --- hugolib/shortcode_test.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hugolib/shortcode_test.go') diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 9d948c807..d57a0d663 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -1101,6 +1101,7 @@ SECOND:{{< myshort.inline "second" />}}:END NEW INLINE: {{< n1.inline "5" >}}W1: {{ seq (.Get 0) }}{{< /n1.inline >}}:END: INLINE IN INNER: {{< outer >}}{{< n2.inline >}}W2: {{ seq 4 }}{{< /n2.inline >}}{{< /outer >}}:END: REUSED INLINE IN INNER: {{< outer >}}{{< n1.inline "3" />}}{{< /outer >}}:END: +## MARKDOWN DELIMITER: {{% mymarkdown.inline %}}**Hugo Rocks!**{{% /mymarkdown.inline %}} ` b.WithContent("page-md-shortcode.md", `--- @@ -1116,10 +1117,12 @@ title: "Hugo Home" b.WithTemplatesAdded("layouts/_default/single.html", ` CONTENT:{{ .Content }} +TOC: {{ .TableOfContents }} `) b.WithTemplatesAdded("layouts/index.html", ` CONTENT:{{ .Content }} +TOC: {{ .TableOfContents }} `) b.WithTemplatesAdded("layouts/shortcodes/outer.html", `Inner: {{ .Inner }}`) @@ -1133,6 +1136,7 @@ CONTENT:{{ .Content }} "NEW INLINE: W1: [1 2 3 4 5]", "INLINE IN INNER: Inner: W2: [1 2 3 4]", "REUSED INLINE IN INNER: Inner: W1: [1 2 3]", + `
  • MARKDOWN DELIMITER: Hugo Rocks!
  • `, } if enableInlineShortcodes { -- cgit v1.2.3