-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
20 lines (20 loc) · 753 Bytes
/
plugin.json
File metadata and controls
20 lines (20 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"id": "nodebb-plugin-extended-markdown",
"url": "https://github.com/MinecraftForgeFrance/nodebb-plugin-extended-markdown",
"library": "./library.js",
"scss": [
"public/scss/style.scss"
],
"hooks": [
{ "hook": "filter:parse.post", "method": "parsePost"},
{ "hook": "filter:parse.signature", "method": "parseSignature" },
{ "hook": "filter:parse.aboutme", "method": "parseAboutMe"},
{ "hook": "filter:parse.raw", "method": "parseRaw"},
{ "hook": "filter:composer.formatting", "method": "registerFormatting"},
{ "hook": "filter:sanitize.config", "method": "sanitizerConfig"}
],
"scripts": [
"public/js/client.js"
],
"languages": "public/languages"
}