2022-02-22 19:46:34 +08:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
2022-05-03 08:26:37 +08:00
|
|
|
exports[`<TextualBody /> renders formatted m.text correctly linkification is not applied to code blocks 1`] = `
|
2022-11-04 18:48:08 +08:00
|
|
|
"<span class="mx_EventTile_body markdown-body" dir="auto"><p>Visit <code>https://matrix.org/</code></p>
|
|
|
|
<div class="mx_EventTile_pre_container"><pre class="mx_EventTile_collapsedCodeBlock"><span class="mx_EventTile_lineNumbers"><span>1</span></span><code>https://matrix.org/
|
|
|
|
</code><span></span></pre><span class="mx_EventTile_button mx_EventTile_copyButton "></span></div>
|
2022-05-03 08:26:37 +08:00
|
|
|
</span>"
|
|
|
|
`;
|
|
|
|
|
2022-02-22 19:46:34 +08:00
|
|
|
exports[`<TextualBody /> renders formatted m.text correctly pills do not appear in code blocks 1`] = `
|
2022-11-04 18:48:08 +08:00
|
|
|
"<span class="mx_EventTile_body markdown-body" dir="auto"><p><code>@room</code></p>
|
|
|
|
<div class="mx_EventTile_pre_container"><pre class="mx_EventTile_collapsedCodeBlock"><span class="mx_EventTile_lineNumbers"><span>1</span></span><code>@room
|
|
|
|
</code><span></span></pre><span class="mx_EventTile_button mx_EventTile_copyButton "></span></div>
|
2022-02-22 19:46:34 +08:00
|
|
|
</span>"
|
|
|
|
`;
|
2022-05-07 05:26:32 +08:00
|
|
|
|
2022-11-08 18:58:26 +08:00
|
|
|
exports[`<TextualBody /> renders formatted m.text correctly pills get injected correctly into the DOM 1`] = `"<span class="mx_EventTile_body markdown-body" dir="auto">Hey <span><bdi><a class="mx_Pill mx_UserPill"><img class="mx_BaseAvatar mx_BaseAvatar_image" src="mxc://avatar.url/image.png" style="width: 16px; height: 16px;" alt="" member="[object Object]" aria-hidden="true"><span class="mx_Pill_linkText">Member</span></a></bdi></span></span>"`;
|