2023-03-08 21:59:19 +01:00
|
|
|
import { Liquid } from 'liquidjs';
|
2023-04-21 21:01:43 +02:00
|
|
|
import markdown, { PluginWithOptions } from 'markdown-it';
|
2023-03-08 21:59:19 +01:00
|
|
|
import markdownItAttrs from 'markdown-it-attrs';
|
|
|
|
import markdownDefList from 'markdown-it-deflist';
|
|
|
|
import path from 'path';
|
|
|
|
|
2023-04-21 21:01:43 +02:00
|
|
|
import { renderPermalink } from './components/anchors';
|
|
|
|
|
2023-03-08 21:59:19 +01:00
|
|
|
/**
|
|
|
|
* Returns Markdown engine with custom configuration and plugins.
|
|
|
|
*
|
|
|
|
* @see https://github.com/markdown-it/markdown-it
|
|
|
|
* @see https://github.com/markdown-it/markdown-it-deflist
|
|
|
|
* @see https://github.com/arve0/markdown-it-attrs
|
|
|
|
*/
|
|
|
|
export const markdownEngine = markdown({
|
|
|
|
html: true,
|
|
|
|
typographer: true,
|
|
|
|
})
|
|
|
|
.use(markdownDefList)
|
2023-04-21 21:01:43 +02:00
|
|
|
.use(markdownItAttrs)
|
|
|
|
.use(require('markdown-it-anchor') as PluginWithOptions, {
|
|
|
|
permalink: renderPermalink,
|
|
|
|
});
|
2023-03-08 21:59:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns LiquidJS engine with custom configuration.
|
|
|
|
*
|
|
|
|
* @see https://liquidjs.com/
|
|
|
|
*/
|
|
|
|
export const liquidEngine = new Liquid({
|
|
|
|
root: [
|
|
|
|
path.resolve(__dirname, '../_includes/'),
|
|
|
|
path.resolve(__dirname, '../'),
|
|
|
|
],
|
|
|
|
extname: '.liquid',
|
|
|
|
strictFilters: true,
|
|
|
|
jsTruthy: true,
|
|
|
|
});
|