-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathextension.json
36 lines (36 loc) · 1.33 KB
/
extension.json
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
{
"name": "SimpleMathJax",
"version": "0.8.4",
"author": "jmnote",
"url": "https://www.mediawiki.org/wiki/Extension:SimpleMathJax",
"description": "render TeX between <code><nowiki><math></nowiki></code> and <code><nowiki></math></nowiki></code>",
"license-name": "GPL-2.0+",
"type": "parserhook",
"AutoloadClasses": {
"SimpleMathJaxHooks": "SimpleMathJaxHooks.php"
},
"config": {
"SmjUseCdn": {"value":true, "description":"true to load mathjax from CDN"},
"SmjUseChem": {"value":true, "description":"true to enabled chem tag"},
"SmjDisplayMath": {"value":[], "description":"MathJax.tex.displayMath"},
"SmjExtraInlineMath": {"value":[], "description":"MathJax.tex.inlineMath"},
"SmjScale": {"value":1, "description":"MathJax.chtml.scale"},
"SmjEnableMenu": {"value":true, "description":"MathJax.options.enableMenu"},
"SmjDisplayAlign": {"value":"left", "description":"MathJax.chtml.displayAlign"},
"SmjWrapDisplaystyle": {"value":true, "description":"true to wrap with displaystyle"}
},
"Hooks": {
"ParserFirstCallInit": "SimpleMathJaxHooks::onParserFirstCallInit"
},
"ResourceModules": {
"ext.SimpleMathJax": {
"scripts": ["resources/ext.SimpleMathJax.js"],
"targets": ["desktop", "mobile"]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SimpleMathJax"
},
"manifest_version": 2
}