mirror of
https://github.com/benjaminion/upgrading-ethereum-book.git
synced 2026-01-06 21:24:02 -05:00
47 lines
1.6 KiB
JavaScript
47 lines
1.6 KiB
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import { metadata, searchOptions } from './src/include/SiteConfig.js';
|
|
import remarkMath from 'remark-math';
|
|
import rehypeKatex from 'rehype-katex';
|
|
import rehypeRaw from 'rehype-raw';
|
|
import Prism from 'prismjs';
|
|
|
|
// Custom integrations
|
|
import myBuildChecks from './integrations/my_build_checks';
|
|
import myAutoLinkHeadings from './integrations/my_autolink_headings';
|
|
import mySvgInline from './integrations/my_svg_inline';
|
|
import mySearchIndex from './integrations/my_search_index';
|
|
import myAddTooltips from './integrations/my_add_tooltips';
|
|
import mySpecLinks from './integrations/my_spec_links';
|
|
import myFixupLinks from './integrations/my_fixup_links';
|
|
import myCleanupHtml from './integrations/my_cleanup_html';
|
|
import myHtaccess from './integrations/my_htaccess';
|
|
|
|
Prism.languages.none = Prism.languages.text;
|
|
Prism.languages.code = Prism.languages.text;
|
|
|
|
export default defineConfig({
|
|
base: '/' + metadata.version,
|
|
integrations: [
|
|
myBuildChecks(),
|
|
myAutoLinkHeadings({ exclude: 'h1, .no-anchor' }),
|
|
mySvgInline({ filePath: 'src/', cachePath: './.svg_cache/' }),
|
|
mySearchIndex(searchOptions),
|
|
myAddTooltips({ constantsFile: 'src/include/constants.json' }),
|
|
mySpecLinks(),
|
|
myFixupLinks(),
|
|
myCleanupHtml(),
|
|
myHtaccess(),
|
|
],
|
|
markdown: {
|
|
syntaxHighlight: 'prism',
|
|
smartypants: false,
|
|
remarkRehype: { clobberPrefix: '' }, // This is ok as we trust the markdown
|
|
remarkPlugins: [remarkMath],
|
|
rehypePlugins: [
|
|
rehypeRaw, // Insert HTML embedded in MD files into the AST rather than as raw strings
|
|
[rehypeKatex, {}],
|
|
],
|
|
},
|
|
});
|