Skip to content

Commit 909804b

Browse files
xoxyszeripath
andauthored
Bump goldmark to v1.4.11 (#19201)
* Bump goldmark to v1.4.11 * add testcase Signed-off-by: Andrew Thornton <[email protected]> Co-authored-by: Andrew Thornton <[email protected]>
1 parent def5456 commit 909804b

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ require (
8484
github.com/urfave/cli v1.22.5
8585
github.com/xanzy/go-gitlab v0.58.0
8686
github.com/yohcop/openid-go v1.0.0
87-
github.com/yuin/goldmark v1.4.8
87+
github.com/yuin/goldmark v1.4.11
8888
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
8989
github.com/yuin/goldmark-meta v1.1.0
9090
go.jolheiser.com/hcaptcha v0.0.4

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1545,8 +1545,8 @@ github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1
15451545
github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
15461546
github.com/yuin/goldmark v1.4.5/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
15471547
github.com/yuin/goldmark v1.4.6/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
1548-
github.com/yuin/goldmark v1.4.8 h1:zHPiabbIRssZOI0MAzJDHsyvG4MXCGqVaMOwR+HeoQQ=
1549-
github.com/yuin/goldmark v1.4.8/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
1548+
github.com/yuin/goldmark v1.4.11 h1:i45YIzqLnUc2tGaTlJCyUxSG8TvgyGqhqOZOUKIjJ6w=
1549+
github.com/yuin/goldmark v1.4.11/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
15501550
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594 h1:yHfZyN55+5dp1wG7wDKv8HQ044moxkyGq12KFFMFDxg=
15511551
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594/go.mod h1:U9ihbh+1ZN7fR5Se3daSPoz1CGF9IYtSvWwVQtnzGHU=
15521552
github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc=

modules/markup/markdown/markdown_test.go

+13
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@ func testAnswers(baseURLContent, baseURLImages string) []string {
199199
</li>
200200
</ol>
201201
</div>
202+
`, `<ul>
203+
<li class="task-list-item"><input type="checkbox" disabled="" data-source-position="3"/> If you want to rebase/retry this PR, click this checkbox.</li>
204+
</ul>
205+
<hr/>
206+
<p>This PR has been generated by <a href="https://github.com/renovatebot/renovate" rel="nofollow">Renovate Bot</a>.</p>
202207
`,
203208
}
204209
}
@@ -271,6 +276,14 @@ Here is a simple footnote,[^1] and here is a longer one.[^bignote]
271276
272277
Add as many paragraphs as you like.
273278
`,
279+
`
280+
- [ ] <!-- rebase-check --> If you want to rebase/retry this PR, click this checkbox.
281+
282+
---
283+
284+
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
285+
286+
<!-- test-comment -->`,
274287
}
275288

276289
func TestTotal_RenderWiki(t *testing.T) {

0 commit comments

Comments
 (0)