Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2022-04-25 17:20:30 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-04-27 11:04:00 +0300
commita022ca271be90fc47b45f27ce5dd9ef753453bfc (patch)
tree33eed03f239e4edd938bd2ee777bec0b47bf28b4 /hugolib
parentd56b33955fe300e6d272033e7b06525646dc93d0 (diff)
deps: Update github.com/yuin/goldmark v1.4.11 => v1.4.12
Fixes #9054 Fixes #9756 Fixes #9757
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/page_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/page_test.go b/hugolib/page_test.go
index c16754cd9..84e54306a 100644
--- a/hugolib/page_test.go
+++ b/hugolib/page_test.go
@@ -456,7 +456,7 @@ func TestPageWithDelimiterForMarkdownThatCrossesBorder(t *testing.T) {
}
cnt := content(p)
- if cnt != "<p>The <a href=\"http://gohugo.io/\">best static site generator</a>.<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup></p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>Many people say so.&#160;<a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">&#x21a9;&#xfe0e;</a></p>\n</li>\n</ol>\n</section>" {
+ if cnt != "<p>The <a href=\"http://gohugo.io/\">best static site generator</a>.<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup></p>\n<div class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\">\n<p>Many people say so.&#160;<a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">&#x21a9;&#xfe0e;</a></p>\n</li>\n</ol>\n</div>" {
t.Fatalf("Got content:\n%q", cnt)
}
}