forked from sillsdev/docu-notion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docu-notion.config.ts
46 lines (39 loc) · 1.3 KB
/
docu-notion.config.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* This file is only used when testing Nocusaurus itself, not when it is used as a library.
E.g., if you run `npm run pull-test-tagged`, Nocusaurus will read this file and use it to configure itself,
using these example plugins.
*/
import { IPlugin, IDocuNotionConfig, Log, NotionBlock } from "./dist";
// This is an example of a plugin that needs customization by the end user.
// It uses a closure to supply the plugin with the customization parameter.
function dummyBlockModifier(customParameter: string): IPlugin {
return {
name: "dummyBlockModifier",
notionBlockModifications: [
{
modify: (block: NotionBlock) => {
Log.verbose(
`dummyBlockModifier has customParameter:${customParameter}.`
);
},
},
],
};
}
const dummyMarkdownModifier: IPlugin = {
name: "dummyMarkdownModifier",
regexMarkdownModifications: [
{
regex: /aaa(.*)aaa/,
replacementPattern: "bbb$1bbb",
},
],
};
const config: IDocuNotionConfig = {
plugins: [
// here we're adding a plugin that needs a parameter for customization
// dummyBlockModifier("foobar"),
// here's we're adding a plugin that doesn't take any customization
// dummyMarkdownModifier,
],
};
export default config;