hedgedoc/src/components/markdown-renderer/markdown-extension/__snapshots__/linkify-fix-markdown-extension.test.tsx.snap
Philip Molares f7a51cd406 test: check that .rocks links are correctly rendered
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2022-08-25 10:34:37 +02:00

33 lines
406 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Linkify markdown extensions renders a .rocks link correctly 1`] = `
<div>
<p>
<a
href="http://example.rocks"
>
example.rocks
</a>
</p>
<p>
<a
href="http://example.com"
>
example.com
</a>
</p>
<p>
<a
href="http://example.de"
>
example.de
</a>
</p>
</div>
`;