-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
55 lines (51 loc) · 1.9 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Full Astro Configuration API Documentation:
// https://docs.astro.build/reference/configuration-reference
// @type-check enabled!
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
// helpful tooltips, and warnings if your exported object is invalid.
// You can disable this by removing "@ts-check" and `@type` comments below.
import astroRemark from '@astrojs/markdown-remark';
import rehypePlugin from './rehypePlugin.mjs';
import rehypeExternalLinks from 'rehype-external-links';
import { s } from 'hastscript';
// console.debug(rehypeSlug);
console.debug(await import('rehype-slug'));
// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
// Enable Custom Markdown options, plugins, etc.
markdownOptions: {
render: [
astroRemark,
{
remarkPlugins: ['remark-code-titles'],
rehypePlugins: [
{ default: (await import('rehype-slug')).default },
[
'rehype-autolink-headings',
{
behavior: 'prepend',
content: s(
// add SVG using rehype-autolink-headings in mdx.js - https://github.com/remarkjs/remark/discussions/732#discussioncomment-816042
// another reference: https://github.com/janosh/svelte-toc/commit/8493df334a11661eddf03434372f6cd71ea313c1
`svg`,
{ width: 16, height: 16, viewBox: `0 0 16 16` },
// symbol #link-icon defined in app.html
s(`use`, { 'xlink:href': `#link-icon` })
),
},
],
[
'rehype-external-links',
{
target: '_blank',
rel: 'noopener noreferrer',
},
],
['rehype-toc', { headings: ['h2', 'h3'] }],
['rehype-add-classes', { 'h1,h2,h3': 'title' }],
{ default: rehypePlugin },
],
},
],
},
});