-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.ts
31 lines (25 loc) · 924 Bytes
/
index.ts
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
import attrsPlugin, {type AttrsOptions} from 'markdown-it-attrs';
import type {ExtensionAuto} from '#core';
import {noop} from 'src/lodash';
const defaultAttrsOpts: AttrsOptions = {
allowedAttributes: ['id'],
};
export type YfmConfigsSpecsOptions = {
/** markdown-it-attrs options */
attrs?: AttrsOptions;
/** Disable markdown-it-attrs plugin */
disableAttrs?: boolean;
};
export const YfmConfigsSpecs: ExtensionAuto<YfmConfigsSpecsOptions> = (builder, opts) => {
const attrsOpts = {...defaultAttrsOpts, ...opts.attrs};
// MAJOR: remove markdown-it-attrs
if (!opts.disableAttrs) {
builder.configureMd((md) => md.use<AttrsOptions>(attrsPlugin, attrsOpts), {text: false});
}
// ignore yfm lint token
builder.addNode('__yfm_lint', () => ({
spec: {},
fromMd: {tokenSpec: {name: '__yfm_lint', type: 'node', ignore: true}},
toMd: noop,
}));
};