2022-07-21 15:43:58 -05:00
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
2024-02-21 09:08:19 -05:00
|
|
|
import { describe, it } from 'node:test';
|
2022-07-21 15:43:58 -05:00
|
|
|
import { parseHTML } from 'linkedom';
|
2022-11-09 08:32:13 -05:00
|
|
|
import rehypePrettyCode from 'rehype-pretty-code';
|
2024-02-21 09:08:19 -05:00
|
|
|
import shikiTwoslash from 'remark-shiki-twoslash';
|
|
|
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
2022-07-21 15:43:58 -05:00
|
|
|
|
|
|
|
const FIXTURE_ROOT = new URL('./fixtures/mdx-syntax-hightlighting/', import.meta.url);
|
|
|
|
|
|
|
|
describe('MDX syntax highlighting', () => {
|
|
|
|
describe('shiki', () => {
|
|
|
|
it('works', async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: 'shiki',
|
|
|
|
},
|
|
|
|
integrations: [mdx()],
|
|
|
|
});
|
|
|
|
await fixture.build();
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-07-21 15:43:58 -05:00
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-08-15 09:43:12 -05:00
|
|
|
const shikiCodeBlock = document.querySelector('pre.astro-code');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(shikiCodeBlock, null);
|
|
|
|
assert.equal(shikiCodeBlock.getAttribute('style').includes('background-color:#24292e'), true);
|
2022-07-21 15:43:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('respects markdown.shikiConfig.theme', async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: 'shiki',
|
|
|
|
shikiConfig: {
|
|
|
|
theme: 'dracula',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
integrations: [mdx()],
|
|
|
|
});
|
|
|
|
await fixture.build();
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-07-21 15:43:58 -05:00
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-08-15 09:43:12 -05:00
|
|
|
const shikiCodeBlock = document.querySelector('pre.astro-code');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(shikiCodeBlock, null);
|
|
|
|
assert.equal(shikiCodeBlock.getAttribute('style').includes('background-color:#282A36'), true);
|
2022-07-21 15:43:58 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('prism', () => {
|
|
|
|
it('works', async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: 'prism',
|
|
|
|
},
|
|
|
|
integrations: [mdx()],
|
|
|
|
});
|
|
|
|
await fixture.build();
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-07-21 15:43:58 -05:00
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
2022-07-21 15:46:16 -05:00
|
|
|
|
2022-07-21 15:43:58 -05:00
|
|
|
const prismCodeBlock = document.querySelector('pre.language-astro');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(prismCodeBlock, null);
|
2022-07-21 15:43:58 -05:00
|
|
|
});
|
2023-01-03 17:12:47 -05:00
|
|
|
|
|
|
|
for (const extendMarkdownConfig of [true, false]) {
|
|
|
|
it(`respects syntaxHighlight when extendMarkdownConfig = ${extendMarkdownConfig}`, async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: 'shiki',
|
|
|
|
},
|
|
|
|
integrations: [
|
|
|
|
mdx({
|
|
|
|
extendMarkdownConfig,
|
|
|
|
syntaxHighlight: 'prism',
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const shikiCodeBlock = document.querySelector('pre.astro-code');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(shikiCodeBlock, null, 'Markdown config syntaxHighlight used unexpectedly');
|
2023-01-03 17:12:47 -05:00
|
|
|
const prismCodeBlock = document.querySelector('pre.language-astro');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(prismCodeBlock, null);
|
2023-01-03 17:12:47 -05:00
|
|
|
});
|
|
|
|
}
|
2022-07-21 15:43:58 -05:00
|
|
|
});
|
2022-08-15 09:43:12 -05:00
|
|
|
|
|
|
|
it('supports custom highlighter - shiki-twoslash', async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: false,
|
|
|
|
},
|
2022-08-15 09:45:15 -05:00
|
|
|
integrations: [
|
|
|
|
mdx({
|
|
|
|
remarkPlugins: [shikiTwoslash.default ?? shikiTwoslash],
|
|
|
|
}),
|
|
|
|
],
|
2022-08-15 09:43:12 -05:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
|
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const twoslashCodeBlock = document.querySelector('pre.shiki');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(twoslashCodeBlock, null);
|
2022-08-15 09:43:12 -05:00
|
|
|
});
|
2022-11-09 08:32:13 -05:00
|
|
|
|
|
|
|
it('supports custom highlighter - rehype-pretty-code', async () => {
|
|
|
|
const fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: false,
|
|
|
|
},
|
|
|
|
integrations: [
|
|
|
|
mdx({
|
|
|
|
rehypePlugins: [
|
|
|
|
[
|
|
|
|
rehypePrettyCode,
|
|
|
|
{
|
|
|
|
onVisitHighlightedLine(node) {
|
|
|
|
node.properties.style = 'background-color:#000000';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
|
|
|
|
const html = await fixture.readFile('/index.html');
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(html.includes('style="background-color:#000000"'), true);
|
2022-11-09 08:32:13 -05:00
|
|
|
});
|
2022-07-21 15:43:58 -05:00
|
|
|
});
|