-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathextension.json
More file actions
40 lines (40 loc) · 1.76 KB
/
Copy pathextension.json
File metadata and controls
40 lines (40 loc) · 1.76 KB
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
{
"name": "SimpleMathJax",
"version": "0.8.12",
"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"},
"SmjDirectMathJax": {"value":"full", "description":"env to disable escapes, none to only math and chem tags"},
"SmjDisplayMath": {"value":[], "description":"MathJax.tex.displayMath"},
"SmjExtraInlineMath": {"value":[], "description":"MathJax.tex.inlineMath"},
"SmjIgnoreHtmlClass": {"value":"mathjax_ignore|comment|diff-(context|addedline|deletedline)", "description":"MathJax.options.ignoreHtmlClass"},
"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"},
"SmjEnableHtmlAttributes": {"value":false, "description":"true to process attributes of math tag"},
"SmjConfigByRevision": {"value":[], "description":"switch the configuration"}
},
"Hooks": {
"ParserFirstCallInit": "SimpleMathJaxHooks::onParserFirstCallInit"
},
"ResourceModules": {
"ext.SimpleMathJax": {
"scripts": ["resources/ext.SimpleMathJax.js"],
"targets": ["desktop", "mobile"]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SimpleMathJax"
},
"manifest_version": 2
}