-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
33 lines (32 loc) · 1.02 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
import { defineConfig } from 'astro/config';
import { readFileSync } from "fs";
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import solidJs from "@astrojs/solid-js";
export default defineConfig({
integrations: [tailwind(), mdx(), solidJs()],
markdown: {
shikiConfig: {
theme: 'dracula',
langs: [
// important: a language's dependencies must be loaded first, or explosion
{
id: 'tlaplus',
scopeName: 'source.tlaplus',
grammar: JSON.parse(readFileSync('./highlighting/tlaplus.tmLanguage.json')),
aliases: ['tla']
}, {
id: 'pluscal',
scopeName: 'source.tlaplus.pluscal',
grammar: JSON.parse(readFileSync('./highlighting/pluscal.tmLanguage.json')),
embeddedLangs: ['tlaplus']
}, {
id: 'mpcal',
scopeName: 'source.tlaplus.mpcal',
grammar: JSON.parse(readFileSync('./highlighting/mpcal.tmLanguage.json')),
embeddedLangs: ['tlaplus', 'pluscal']
}],
wrap: true
}
}
});