commonmarker 2.6.3-arm64-darwin → 2.7.0-arm64-darwin
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.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/commonmarker/3.2/commonmarker.bundle +0 -0
- data/lib/commonmarker/3.3/commonmarker.bundle +0 -0
- data/lib/commonmarker/3.4/commonmarker.bundle +0 -0
- data/lib/commonmarker/4.0/commonmarker.bundle +0 -0
- data/lib/commonmarker/config.rb +2 -0
- data/lib/commonmarker/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebef260cbd24186d75cb180fad4f6b2a78a51720f483ff548b18811908a3fb9d
|
|
4
|
+
data.tar.gz: 162f3f78d0e292b63e9e1d859d8056c620b14a53ebaafdb76f089be1580cc239
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3d8f8b15660643c58d09e0e6a1804a0faba9948494d6a4c1a2b3fe49777b47ddc072f78b81b4959b9ad1e948aa4a378314c8ab19a13d49c79cba62ae5278a82
|
|
7
|
+
data.tar.gz: 24186d45d866b69af918caa787e9399450597b4e6776b1a8f7a7eec4c3b4bef70221ebec856900f2caf78af4956065b69b3b3363498400e6c8291ee9866d638e
|
data/README.md
CHANGED
|
@@ -181,6 +181,7 @@ Note that there is a distinction in comrak for "parse" options and "render" opti
|
|
|
181
181
|
| `gfm_quirks` | Outputs HTML with GFM-style quirks; namely, not nesting `<strong>` inlines. | `false` |
|
|
182
182
|
| `prefer_fenced` | Always output fenced code blocks, even where an indented one could be used. | `false` |
|
|
183
183
|
| `tasklist_classes` | Add CSS classes to the HTML output of the tasklist extension | `false` |
|
|
184
|
+
| `compact_html` | Suppress newlines in pretty-printed HTML output. | `false` |
|
|
184
185
|
|
|
185
186
|
As well, there are several extensions which you can toggle in the same manner:
|
|
186
187
|
|
|
@@ -219,6 +220,7 @@ Commonmarker.to_html('"Hi *there*"', options: {
|
|
|
219
220
|
| `alerts` | Enables the alerts extension. | `false` |
|
|
220
221
|
| `cjk_friendly_emphasis` | Enables the [CJK friendly emphasis](https://github.com/tats-u/markdown-cjk-friendly) extension. | `false` |
|
|
221
222
|
| `highlight` | Enables highlighting via `==` | `false` |
|
|
223
|
+
| `insert` | Enables the insert extension, rendering `++text++` as `<ins>text</ins>`. | `false` |
|
|
222
224
|
|
|
223
225
|
For more information on these options, see [the comrak documentation](https://github.com/kivikakk/comrak#usage).
|
|
224
226
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/commonmarker/config.rb
CHANGED
|
@@ -26,6 +26,7 @@ module Commonmarker
|
|
|
26
26
|
gfm_quirks: false,
|
|
27
27
|
prefer_fenced: false,
|
|
28
28
|
tasklist_classes: false,
|
|
29
|
+
compact_html: false,
|
|
29
30
|
}.freeze,
|
|
30
31
|
extension: {
|
|
31
32
|
strikethrough: true,
|
|
@@ -53,6 +54,7 @@ module Commonmarker
|
|
|
53
54
|
alerts: false,
|
|
54
55
|
cjk_friendly_emphasis: false,
|
|
55
56
|
highlight: false,
|
|
57
|
+
insert: false,
|
|
56
58
|
}.freeze,
|
|
57
59
|
format: [:html].freeze,
|
|
58
60
|
}.freeze
|
data/lib/commonmarker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: commonmarker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: arm64-darwin
|
|
6
6
|
authors:
|
|
7
7
|
- Garen Torikian
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-
|
|
12
|
+
date: 2026-03-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|