hongdown 0.3.0-dev.85 → 0.3.0-dev.89
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 +15 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -479,6 +479,21 @@ null_ls.register(hongdown)
|
|
|
479
479
|
[none-ls.nvim]: https://github.com/nvimtools/none-ls.nvim
|
|
480
480
|
[Vladimir Rubin]: https://github.com/dahlia/hongdown/issues/4
|
|
481
481
|
|
|
482
|
+
### Helix
|
|
483
|
+
|
|
484
|
+
If you use [Helix], you can register Hongdown as a formatter (contributed by
|
|
485
|
+
[Jean Simard]):
|
|
486
|
+
|
|
487
|
+
~~~~ toml
|
|
488
|
+
[[language]]
|
|
489
|
+
name = "markdown"
|
|
490
|
+
auto-format = true
|
|
491
|
+
formatter = { command = "hongdown", args = ["--stdin"] }
|
|
492
|
+
~~~~
|
|
493
|
+
|
|
494
|
+
[Helix]: https://helix-editor.com/
|
|
495
|
+
[Jean Simard]: https://github.com/dahlia/hongdown/pull/12
|
|
496
|
+
|
|
482
497
|
|
|
483
498
|
Library usage
|
|
484
499
|
-------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hongdown",
|
|
3
|
-
"version": "0.3.0-dev.
|
|
3
|
+
"version": "0.3.0-dev.89+dbf9b352",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Markdown formatter that enforces Hong Minhee's Markdown style conventions",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"node": "\u003e=18"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@hongdown/darwin-arm64": "0.3.0-dev.
|
|
31
|
-
"@hongdown/darwin-x64": "0.3.0-dev.
|
|
32
|
-
"@hongdown/linux-arm64": "0.3.0-dev.
|
|
33
|
-
"@hongdown/linux-x64": "0.3.0-dev.
|
|
34
|
-
"@hongdown/win32-arm64": "0.3.0-dev.
|
|
35
|
-
"@hongdown/win32-x64": "0.3.0-dev.
|
|
30
|
+
"@hongdown/darwin-arm64": "0.3.0-dev.89+dbf9b352",
|
|
31
|
+
"@hongdown/darwin-x64": "0.3.0-dev.89+dbf9b352",
|
|
32
|
+
"@hongdown/linux-arm64": "0.3.0-dev.89+dbf9b352",
|
|
33
|
+
"@hongdown/linux-x64": "0.3.0-dev.89+dbf9b352",
|
|
34
|
+
"@hongdown/win32-arm64": "0.3.0-dev.89+dbf9b352",
|
|
35
|
+
"@hongdown/win32-x64": "0.3.0-dev.89+dbf9b352"
|
|
36
36
|
}
|
|
37
37
|
}
|