hongdown 0.2.0-dev.56 → 0.2.0-dev.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.
- package/README.md +8 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -173,6 +173,14 @@ default_language = "" # Default language for code blocks (default: "")
|
|
|
173
173
|
[thematic_break]
|
|
174
174
|
style = "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -"
|
|
175
175
|
leading_spaces = 3 # Leading spaces (0-3, default: 3)
|
|
176
|
+
|
|
177
|
+
[punctuation]
|
|
178
|
+
curly_double_quotes = true # "text" to "text" (default: true)
|
|
179
|
+
curly_single_quotes = true # 'text' to 'text' (default: true)
|
|
180
|
+
curly_apostrophes = false # it's to it's (default: false)
|
|
181
|
+
ellipsis = true # ... to ... (default: true)
|
|
182
|
+
en_dash = false # Disabled by default (use "--" to enable)
|
|
183
|
+
em_dash = "--" # -- to --- (default: "--", use false to disable)
|
|
176
184
|
~~~~
|
|
177
185
|
|
|
178
186
|
When `include` patterns are configured, you can run Hongdown without
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hongdown",
|
|
3
|
-
"version": "0.2.0-dev.
|
|
3
|
+
"version": "0.2.0-dev.63+d0d5beee",
|
|
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.2.0-dev.
|
|
31
|
-
"@hongdown/darwin-x64": "0.2.0-dev.
|
|
32
|
-
"@hongdown/linux-arm64": "0.2.0-dev.
|
|
33
|
-
"@hongdown/linux-x64": "0.2.0-dev.
|
|
34
|
-
"@hongdown/win32-arm64": "0.2.0-dev.
|
|
35
|
-
"@hongdown/win32-x64": "0.2.0-dev.
|
|
30
|
+
"@hongdown/darwin-arm64": "0.2.0-dev.63+d0d5beee",
|
|
31
|
+
"@hongdown/darwin-x64": "0.2.0-dev.63+d0d5beee",
|
|
32
|
+
"@hongdown/linux-arm64": "0.2.0-dev.63+d0d5beee",
|
|
33
|
+
"@hongdown/linux-x64": "0.2.0-dev.63+d0d5beee",
|
|
34
|
+
"@hongdown/win32-arm64": "0.2.0-dev.63+d0d5beee",
|
|
35
|
+
"@hongdown/win32-x64": "0.2.0-dev.63+d0d5beee"
|
|
36
36
|
}
|
|
37
37
|
}
|