marked/test/specs/redos/quadratic_em_mask.cjs
2024-07-14 18:54:46 -06:00

19 lines
362 B
JavaScript

module.exports = [
{
markdown: '['.repeat(100000),
html: `<p>${'['.repeat(100000)}</p>`,
},
{
markdown: '[.'.repeat(50000),
html: `<p>${'[.'.repeat(50000)}</p>`,
},
{
markdown: '<'.repeat(100000),
html: `<p>${'<'.repeat(100000)}</p>`,
},
{
markdown: '<.'.repeat(50000),
html: `<p>${'<.'.repeat(50000)}</p>`,
},
];