mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
12 lines
424 B
JavaScript
12 lines
424 B
JavaScript
import { renderMarkdown } from '../dist/index.js';
|
|
import { expect } from 'chai';
|
|
|
|
describe('entities', () => {
|
|
const renderAstroMd = (text) => renderMarkdown(text, { isAstroFlavoredMd: false });
|
|
|
|
it('should not unescape entities', async () => {
|
|
const { code } = await renderAstroMd(`<i>This should NOT be italic</i>`);
|
|
|
|
expect(code).to.equal(`<p><i>This should NOT be italic</i></p>`);
|
|
});
|
|
});
|