forked from forgejo/forgejo
Make sure sibling images get a link too (#14979)
* Make sure sibling images get a link too Due a problem with the ast.Walker in the our transformer in goldmark an image with a sibling image will not be transformed to gain a parent link. This PR fixes this. Fix #12925 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
6463483ec5
commit
164e35ead3
2 changed files with 43 additions and 1 deletions
|
@ -308,3 +308,14 @@ func TestRender_RenderParagraphs(t *testing.T) {
|
|||
test(t, "A\n\nB\nC\n", 2)
|
||||
test(t, "A\n\n\nB\nC\n", 2)
|
||||
}
|
||||
|
||||
func TestRenderSiblingImages_Issue12925(t *testing.T) {
|
||||
testcase := `
|
||||

|
||||
`
|
||||
expected := `<p><a href="/image1" rel="nofollow"><img src="/image1" alt="image1"></a><br>
|
||||
<a href="/image2" rel="nofollow"><img src="/image2" alt="image2"></a></p>
|
||||
`
|
||||
res := string(RenderRaw([]byte(testcase), "", false))
|
||||
assert.Equal(t, expected, res)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue