0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/markdown/remark/test/autolinking.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
JavaScript
Raw Normal View History

import assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
import { createMarkdownProcessor } from '../dist/index.js';
describe('autolinking', () => {
describe('plain md', () => {
let processor;
before(async () => {
processor = await createMarkdownProcessor();
});
it('autolinks URLs starting with a protocol in plain text', async () => {
const markdown = `See https://example.com for more.`;
const { code } = await processor.render(markdown);
2022-07-22 17:47:21 -05:00
assert.equal(
code.replace(/\n/g, ''),
`<p>See <a href="https://example.com">https://example.com</a> for more.</p>`
);
});
2022-07-22 17:47:21 -05:00
it('autolinks URLs starting with "www." in plain text', async () => {
const markdown = `See www.example.com for more.`;
const { code } = await processor.render(markdown);
2022-07-22 17:47:21 -05:00
assert.equal(
code.trim(),
`<p>See <a href="http://www.example.com">www.example.com</a> for more.</p>`
);
});
2022-07-22 17:47:21 -05:00
it('does not autolink URLs in code blocks', async () => {
const markdown = `See \`https://example.com\` or \`www.example.com\` for more.`;
const { code } = await processor.render(markdown);
2022-07-22 17:47:21 -05:00
assert.equal(
code.trim(),
`<p>See <code>https://example.com</code> or <code>www.example.com</code> for more.</p>`
);
});
});
});