hongdown 0.1.0-dev.18 → 0.1.0-dev.20
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 +7 -9
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@ Hongdown
|
|
|
5
5
|
[![npm][npm badge]][npm]
|
|
6
6
|
[![GitHub Actions][GitHub Actions badge]][GitHub Actions]
|
|
7
7
|
|
|
8
|
-
Hongdown is a Markdown formatter that enforces [Hong Minhee's Markdown
|
|
9
|
-
conventions. The formatter is implemented in Rust using
|
|
10
|
-
for parsing. It produces consistently formatted Markdown
|
|
11
|
-
a distinctive style used across multiple projects including
|
|
12
|
-
and [Optique].
|
|
8
|
+
Hongdown is a Markdown formatter that enforces [Hong Minhee's Markdown
|
|
9
|
+
style](./STYLE.md) conventions. The formatter is implemented in Rust using
|
|
10
|
+
the [Comrak] library for parsing. It produces consistently formatted Markdown
|
|
11
|
+
output following a distinctive style used across multiple projects including
|
|
12
|
+
[Fedify], [LogTape], and [Optique].
|
|
13
13
|
|
|
14
14
|
[crates.io badge]: https://img.shields.io/crates/v/hongdown?logo=rust
|
|
15
15
|
[crates.io]: https://crates.io/crates/hongdown
|
|
@@ -17,7 +17,6 @@ and [Optique].
|
|
|
17
17
|
[npm]: https://www.npmjs.com/package/hongdown
|
|
18
18
|
[GitHub Actions badge]: https://github.com/dahlia/hongdown/actions/workflows/main.yaml/badge.svg
|
|
19
19
|
[GitHub Actions]: https://github.com/dahlia/hongdown/actions/workflows/main.yaml
|
|
20
|
-
[Hong Minhee's Markdown style]: ./AGENTS.md#markdown-style-guide
|
|
21
20
|
[Comrak]: https://comrak.ee/
|
|
22
21
|
[Fedify]: https://fedify.dev/
|
|
23
22
|
[LogTape]: https://logtape.org/
|
|
@@ -250,9 +249,8 @@ See the [documentation] for more details.
|
|
|
250
249
|
- Pipes are aligned accounting for East Asian wide characters
|
|
251
250
|
- Minimum column width is maintained
|
|
252
251
|
|
|
253
|
-
See
|
|
254
|
-
|
|
255
|
-
[*Markdown style guide*]: ./AGENTS.md#markdown-style-guide
|
|
252
|
+
See *[STYLE.md](./STYLE.md)* for the complete style specification, including
|
|
253
|
+
the philosophy behind these conventions and detailed formatting rules.
|
|
256
254
|
|
|
257
255
|
|
|
258
256
|
Library usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hongdown",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.20+267234b9",
|
|
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": ">=18"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@hongdown/darwin-arm64": "0.1.0-dev.
|
|
31
|
-
"@hongdown/darwin-x64": "0.1.0-dev.
|
|
32
|
-
"@hongdown/linux-arm64": "0.1.0-dev.
|
|
33
|
-
"@hongdown/linux-x64": "0.1.0-dev.
|
|
34
|
-
"@hongdown/win32-arm64": "0.1.0-dev.
|
|
35
|
-
"@hongdown/win32-x64": "0.1.0-dev.
|
|
30
|
+
"@hongdown/darwin-arm64": "0.1.0-dev.20+267234b9",
|
|
31
|
+
"@hongdown/darwin-x64": "0.1.0-dev.20+267234b9",
|
|
32
|
+
"@hongdown/linux-arm64": "0.1.0-dev.20+267234b9",
|
|
33
|
+
"@hongdown/linux-x64": "0.1.0-dev.20+267234b9",
|
|
34
|
+
"@hongdown/win32-arm64": "0.1.0-dev.20+267234b9",
|
|
35
|
+
"@hongdown/win32-x64": "0.1.0-dev.20+267234b9"
|
|
36
36
|
}
|
|
37
37
|
}
|