forked from nmecad/markdown-img-paste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 KB
/
package.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "markdown-image-paste",
"main": "./lib/markdown-img-paste",
"version": "2.5.2",
"description": "Just use 'ctrl+v' paste image into markdown",
"keywords": [
"markdown",
"md",
"image",
"paste"
],
"repository": "https://github.com/nmecad/markdown-img-paste.git",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"use_subfolder": {
"type": "boolean",
"default": false,
"title": "Save images in subfolder",
"description": "If checked the images will be saved in a subfolder. You can either set your own folder or choose from the presets",
"order": 10
},
"subfolder": {
"type": "string",
"default": "",
"title": "Subfolder for the images",
"description": "",
"order": 20
},
"allLettersLowerCase": {
"type": "boolean",
"default": true,
"title": "All Letters lowercase",
"description": "If checked the first letter of the filename will always be lowercase",
"order": 120
},
"spacesToUnderlines": {
"type": "boolean",
"default": true,
"title": "Spaces to underline",
"description": "If checked words where the second letter is uppercase won't be put in the normal camelCase. This means all letters being Uppercase will stay that way if the second letter is Uppercase",
"order": 110
},
"automaticCamelCase": {
"type": "boolean",
"default": true,
"title": "Automatic camelCase",
"description": "The name of the imagefile will automatically be put into to camelCase. The first letter afert a space will be written in uppercas. The first letter of the filename will depend on the setting `First Letter`",
"order": 100
}
}
}