forked from NodeBB/nodebb-plugin-glossary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
25 lines (25 loc) · 762 Bytes
/
plugin.json
File metadata and controls
25 lines (25 loc) · 762 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
{
"id": "nodebb-plugin-glossary",
"url": "https://github.com/NodeBB/nodebb-plugin-glossary",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:parse.post", "method": "filterParsePost", "priority": 6 },
{ "hook": "filter:teasers.configureStripTags", "method": "filterTeasersConfigureStripTags" },
{ "hook": "filter:widgets.getAreas", "method": "defineWidgetAreas" }
],
"scss": [
"static/style.scss"
],
"scripts": [
"static/lib/main.js"
],
"acpScripts": [
"node_modules/csvtojson/browser/csvtojson.min.js"
],
"modules": {
"../admin/plugins/glossary.js": "static/lib/admin.js"
},
"templates": "templates",
"languages": "languages"
}