summaryrefslogtreecommitdiffstats
path: root/hugolib/page_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/page_test.go')
-rw-r--r--hugolib/page_test.go15
1 files changed, 11 insertions, 4 deletions
diff --git a/hugolib/page_test.go b/hugolib/page_test.go
index 7f8d3cf49..66439a7a5 100644
--- a/hugolib/page_test.go
+++ b/hugolib/page_test.go
@@ -1644,6 +1644,11 @@ $$$bash {hl_lines=[1]}
MARKDOWN
$$$
+Link with URL as text
+
+[https://google.com](https://google.com)
+
+
`
content = strings.ReplaceAll(content, "$$$", "```")
@@ -1652,10 +1657,12 @@ $$$
b.Build(BuildCfg{})
b.AssertFileContent("public/page/index.html",
- `<nav id="TableOfContents">`,
- `<li><a href="#shortcode-t-short-in-header">Shortcode T-SHORT in header</a></li>`,
- `<code class="language-bash" data-lang="bash"><span class="hl">SHORT`,
- `<code class="language-bash" data-lang="bash"><span class="hl">MARKDOWN`)
+ `<nav id="TableOfContents">
+<li><a href="#shortcode-t-short-in-header">Shortcode T-SHORT in header</a></li>
+<code class="language-bash" data-lang="bash"><span class="hl">SHORT
+<code class="language-bash" data-lang="bash"><span class="hl">MARKDOWN
+<p><a href="https://google.com">https://google.com</a></p>
+`)
}
func TestBlackfridayDefault(t *testing.T) {