mirror of
https://github.com/cupcakearmy/markdown-it-import.git
synced 2024-12-21 15:56:26 +00:00
51 lines
758 B
Plaintext
51 lines
758 B
Plaintext
// Bun Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`options matcher custom matcher 1`] = `
|
|
"<p>This is some amazing quote</p>
|
|
"
|
|
`;
|
|
|
|
exports[`options matcher custom matcher 2`] = `
|
|
"<p>This is some amazing quote</p>
|
|
"
|
|
`;
|
|
|
|
exports[`options empty options 1`] = `
|
|
"<h1>Some title</h1>
|
|
<ul>
|
|
<li>Some</li>
|
|
<li>List</li>
|
|
<li>Three</li>
|
|
</ul>
|
|
<blockquote>
|
|
<p>Some note</p>
|
|
</blockquote>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Column A</th>
|
|
<th>Column B</th>
|
|
<th>Column C</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Some</td>
|
|
<td><code>stuff</code></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
"
|
|
`;
|
|
|
|
exports[`options do not trim 1`] = `
|
|
"<p>Here is a typescript snippet</p>
|
|
<pre><code class="language-ts">export function sum(a: number, b: number): number {
|
|
return a + b
|
|
}
|
|
|
|
</code></pre>
|
|
"
|
|
`;
|