26 lines
624 B
JavaScript
26 lines
624 B
JavaScript
// Eleventy
|
|
import {EleventyRenderPlugin} from '@11ty/eleventy';
|
|
import rss from '@11ty/eleventy-plugin-rss';
|
|
import syntaxHighlight from '@11ty/eleventy-plugin-syntaxhighlight';
|
|
import webc from '@11ty/eleventy-plugin-webc';
|
|
|
|
// custom
|
|
import {markdownLib} from './plugins/markdown.js';
|
|
|
|
// Custom transforms
|
|
import {htmlConfig} from './plugins/html-config.js';
|
|
|
|
// Custom template language
|
|
import {cssConfig} from './plugins/css-config.js';
|
|
import {jsConfig} from './plugins/js-config.js';
|
|
|
|
export default {
|
|
EleventyRenderPlugin,
|
|
rss,
|
|
syntaxHighlight,
|
|
webc,
|
|
markdownLib,
|
|
htmlConfig,
|
|
cssConfig,
|
|
jsConfig
|
|
};
|