-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "tidy-markdown",
"description": "Fix ugly markdown.",
"version": "3.0.1",
"author": "Sean Lang <slang800@gmail.com>",
"bugs": "https://github.com/slang800/atom-tidy-markdown/issues",
"configSchema": {
"runOnSave": {
"type": "boolean",
"default": true
},
"ensureFirstHeaderIsH1": {
"type": "boolean",
"default": true,
"description": "When enabled, we make sure that the \"root-level\" header of the document is an H1. If you're working with files that are fragments of a larger document, then disabling this option might be needed."
}
},
"dependencies": {
"tidy-markdown": "git://github.com/slang800/tidy-markdown#v2.0.3"
},
"engines": {
"atom": "*"
},
"keywords": [
"fix",
"format",
"formatting",
"markdown",
"md",
"pretty",
"reformat",
"styleguide",
"tables",
"tidy",
"tidy-markdown"
],
"license": "GPL-3.0",
"main": "./lib/index",
"repository": "https://github.com/slang800/atom-tidy-markdown"
}