Describe the bug:
Images inside links are broken with the resizable image extension. For example:
[](https://example.com)
becomes
<p>[<img src="https://example.com" alt="Example](https://example.com/image.png)"></img></p>
with the HTML renderer. Note that the issue is with ResizableImage, not the HTML renderer.

To Reproduce:
MutableDataSet opts = new MutableDataSet().set(
Parser.EXTENSIONS,
List.of(ResizableImageExtension.create())
);
Parser parser = Parser.builder(opts).build();
HtmlRenderer render = HtmlRenderer.builder(opts).build();
Node document = parser.parse("[](https://example.com)");
System.out.println(render.render(document));
Expected behavior:
Above code should (and does when the ResizableImageExtension is removed) print
<p><a href="https://example.com"><img src="https://example.com/image.png" alt="Example" /></a></p>
Resulting Output:
<p>[<img src="https://example.com" alt="Example](https://example.com/image.png)"></img></p>
is printed
Describe the bug:
Images inside links are broken with the resizable image extension. For example:
becomes
with the HTML renderer. Note that the issue is with ResizableImage, not the HTML renderer.

ResizableImageExtensionTo Reproduce:
Expected behavior:
Above code should (and does when the
ResizableImageExtensionis removed) printResulting Output:
is printed