rumdl 0.2.62 → 0.2.63

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.
Files changed (3) hide show
  1. package/README.md +16 -1
  2. package/bin/rumdl +1 -1
  3. package/package.json +9 -9
package/README.md CHANGED
@@ -1,6 +1,21 @@
1
1
  # rumdl
2
2
 
3
- A fast Markdown linter written in Rust. Drop-in replacement for markdownlint-cli2.
3
+ <div align="center">
4
+
5
+ <img alt="rumdl" src="https://raw.githubusercontent.com/rvben/rumdl/main/assets/logo.svg" width="420">
6
+
7
+ <strong>Clean Markdown. Fast.</strong>
8
+
9
+ One fast native binary for checking and formatting Markdown, with broad
10
+ markdownlint configuration compatibility and built-in support for modern
11
+ Markdown flavors.
12
+
13
+ [**Docs**](https://rumdl.dev) ·
14
+ [**Quickstart**](https://rumdl.dev/getting-started/quickstart/) ·
15
+ [**Rules**](https://rumdl.dev/rules/) ·
16
+ [**vs markdownlint**](https://rumdl.dev/markdownlint-comparison/)
17
+
18
+ </div>
4
19
 
5
20
  ## Installation
6
21
 
package/bin/rumdl CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * rumdl - A fast Markdown linter written in Rust
4
+ * rumdl - A fast Markdown linter and formatter written in Rust
5
5
  *
6
6
  * This is a JavaScript wrapper that detects the platform and spawns
7
7
  * the appropriate native binary from the platform-specific package.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rumdl",
3
- "version": "0.2.62",
4
- "description": "A fast Markdown linter written in Rust",
3
+ "version": "0.2.63",
4
+ "description": "A fast Markdown linter and formatter written in Rust",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -33,12 +33,12 @@
33
33
  "node": ">=18.0.0"
34
34
  },
35
35
  "optionalDependencies": {
36
- "@rumdl/cli-darwin-x64": "0.2.62",
37
- "@rumdl/cli-darwin-arm64": "0.2.62",
38
- "@rumdl/cli-linux-x64": "0.2.62",
39
- "@rumdl/cli-linux-arm64": "0.2.62",
40
- "@rumdl/cli-linux-x64-musl": "0.2.62",
41
- "@rumdl/cli-linux-arm64-musl": "0.2.62",
42
- "@rumdl/cli-win32-x64": "0.2.62"
36
+ "@rumdl/cli-darwin-x64": "0.2.63",
37
+ "@rumdl/cli-darwin-arm64": "0.2.63",
38
+ "@rumdl/cli-linux-x64": "0.2.63",
39
+ "@rumdl/cli-linux-arm64": "0.2.63",
40
+ "@rumdl/cli-linux-x64-musl": "0.2.63",
41
+ "@rumdl/cli-linux-arm64-musl": "0.2.63",
42
+ "@rumdl/cli-win32-x64": "0.2.63"
43
43
  }
44
44
  }