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
path: root/markup
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-11 08:49:35 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-11 08:49:35 +0300
commitb7fa3c4bba73f873bda71ba028ef46ce58aad908 (patch)
tree7b4345407a4686f0f614b83b11e7199e53ee0a62 /markup
parent6a848cbc3a2487c8b015e715c2de44aef6051080 (diff)
deps: Update to Goldmark v1.2.1
Diffstat (limited to 'markup')
-rw-r--r--markup/goldmark/convert_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/markup/goldmark/convert_test.go b/markup/goldmark/convert_test.go
index 9500d2aac..984adef0d 100644
--- a/markup/goldmark/convert_test.go
+++ b/markup/goldmark/convert_test.go
@@ -210,7 +210,7 @@ func TestConvertIssues(t *testing.T) {
b := convert(c, mconf, input)
got := string(b.Bytes())
- c.Assert(got, qt.Contains, "<p><custom-element>\n<div>This will be &ldquo;slotted&rdquo; into the custom element.</div>\n</custom-element></p>\n")
+ c.Assert(got, qt.Contains, "<custom-element>\n <div>This will be \"slotted\" into the custom element.</div>\n</custom-element>\n")
})
}