-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 793 Bytes
/
plugin.json
File metadata and controls
30 lines (30 loc) · 793 Bytes
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
{
"id": "nodebb-plugin-markdown-ext",
"name": "Markdown Ext Parser",
"description": "An extended Markdown parser for NodeBB",
"url": "https://github.com/bludot/nodebb-plugin-markdown-ext",
"library": "./library.js",
"hooks": [
{ "hook": "filter:parse.post", "method": "parse", "priority": 6 },
{ "hook": "filter:admin.header.build", "method": "admin.menu" },
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:hotswap.prepare", "method": "prepare"
},
{
"hook": "filter:header.build", "method": "addNavigation"
}
],
"less": [
"static/style.less"
],
"scripts": [
"static/lib/main.js"
],
"staticDirs": {
"styles": "./static"
},
"templates": "./templates"
}