katana-markdown-linter 0.17.7 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -16,17 +16,33 @@ kml --version
|
|
|
16
16
|
Use `npx` for one-off runs:
|
|
17
17
|
|
|
18
18
|
~~~bash
|
|
19
|
-
npx --yes katana-markdown-linter@0.
|
|
20
|
-
npx --yes katana-markdown-linter@0.
|
|
19
|
+
npx --yes katana-markdown-linter@0.18.0 --version
|
|
20
|
+
npx --yes katana-markdown-linter@0.18.0 check README.md
|
|
21
21
|
~~~
|
|
22
22
|
|
|
23
23
|
## Basic Usage
|
|
24
24
|
|
|
25
25
|
~~~bash
|
|
26
|
+
# Run linting
|
|
26
27
|
kml check README.md
|
|
27
|
-
|
|
28
|
+
|
|
29
|
+
# Show help
|
|
30
|
+
kml help
|
|
31
|
+
kml --help
|
|
32
|
+
kml -h
|
|
33
|
+
kml check --help
|
|
34
|
+
|
|
35
|
+
# Localized help
|
|
28
36
|
kml --locale ja help
|
|
37
|
+
|
|
38
|
+
# Show version aliases
|
|
39
|
+
kml version
|
|
40
|
+
kml --version
|
|
41
|
+
kml -v
|
|
42
|
+
|
|
43
|
+
# Fix and Format
|
|
29
44
|
kml fix README.md
|
|
45
|
+
kml fmt
|
|
30
46
|
~~~
|
|
31
47
|
|
|
32
48
|
## Supported Platforms
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "katana-markdown-linter",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.18.1",
|
|
4
|
+
"description": "Fast Markdown linter and formatter with localized CLI help and version aliases.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
7
7
|
"markdownlint",
|