-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
79 lines (66 loc) · 2.37 KB
/
Copy pathextension.json
File metadata and controls
79 lines (66 loc) · 2.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Native Markdown",
"version": "1.2.0",
"author": [
"[https://professional.wiki/ Professional Wiki]",
"[https://www.EntropyWins.wtf/mediawiki Jeroen De Dauw]"
],
"url": "https://professional.wiki/en/extension/native-markdown",
"descriptionmsg": "nativemarkdown-description",
"license-name": "GPL-2.0-or-later",
"requires": {
"MediaWiki": ">= 1.43.0",
"platform": {
"php": ">= 8.1"
}
},
"MessagesDirs": {
"NativeMarkdown": [
"i18n"
]
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "NativeMarkdown/resources"
},
"ResourceModules": {
"ext.nativeMarkdown.styles": {
"styles": "ext.nativeMarkdown.styles.css"
}
},
"AutoloadNamespaces": {
"ProfessionalWiki\\NativeMarkdown\\": "src/",
"ProfessionalWiki\\NativeMarkdown\\Maintenance\\": "maintenance/",
"ProfessionalWiki\\NativeMarkdown\\Tests\\": "tests/phpunit/"
},
"ContentHandlers": {
"markdown": "ProfessionalWiki\\NativeMarkdown\\EntryPoints\\MarkdownContentHandler"
},
"Hooks": {
"ContentHandlerDefaultModelFor": "ProfessionalWiki\\NativeMarkdown\\EntryPoints\\NativeMarkdownHooks::onContentHandlerDefaultModelFor",
"CodeEditorGetPageLanguage": "ProfessionalWiki\\NativeMarkdown\\EntryPoints\\NativeMarkdownHooks::onCodeEditorGetPageLanguage"
},
"config": {
"NativeMarkdownNamespaces": {
"description": "Namespaces (IDs) in which new pages default to the markdown content model.",
"value": []
},
"NativeMarkdownEverywhere": {
"description": "If new pages should default to the markdown content model everywhere, except discussion, Template and MediaWiki namespaces and namespaces with an explicitly configured content model.",
"value": true
},
"NativeMarkdownSuffixDetection": {
"description": "If new pages with a title ending in .md should default to the markdown content model.",
"value": false
},
"NativeMarkdownAllowExternalImages": {
"description": "If external images in markdown should be embedded. When false (default), they are rendered as plain links.",
"value": false
},
"NativeMarkdownWikitextExpansion": {
"description": "If MediaWiki {{...}} syntax on markdown pages is expanded by the wikitext parser (default). Enables templates, parser functions, magic words, and (with Scribunto) Lua modules. When false, {{...}} is left as literal text.",
"value": true
}
},
"manifest_version": 2
}