mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 11:15:23 -04:00
33 lines
406 B
Text
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>
|
|
`;
|