commonmarker 2.6.3-x86_64-linux → 2.7.0-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8826a2b83fe86492357a3eed26712bb6e66f37c004b88d168bfd468f4033258a
4
- data.tar.gz: 896cf110de15d666e0dfb3565dca222db94d592c25d5a0c6b5c2772d0e1a7b0c
3
+ metadata.gz: 953049d4c5af837b5f6324739b90b01e1bcd72b3037f229c0ced77ff78a4df2d
4
+ data.tar.gz: bc94ebfed235f77d3fa254e6879299c8f0842831651946fa9073b8af365e7c84
5
5
  SHA512:
6
- metadata.gz: 7fc03283259608d8c570f475ee5b787cd468ea8b4e7cdd4cf0165fe198e103c9b9647bf05453ea3bde173f9da39dc9551f268c82055fabad2a8b796d42687424
7
- data.tar.gz: 234c0022c041d9508d4b707c0843a2d69b001600a300c135a579d3fc3ef7398ab887be6618bc5766dea1b7cf72a04ca3b6e7e8cbc541e6137fcff258340cd4f2
6
+ metadata.gz: e41ee54a8f929909e4bca93ea8e469ef3e8b63163348c5c69ebbb59bafbf7f2f1ddeac4a9d4616dffe3d11ced9a7fdaf3cdc965e343b1fa1600955e099cfaa27
7
+ data.tar.gz: 55e8d5a1903616c9feca256a96cfda48021383caac52dc752c16be4cb50524b35558f92d23d348b8e41f1fc431022426c2ffc8454bedbe22612d24c13e9a0f6a
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
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "2.6.3"
4
+ VERSION = "2.7.0"
5
5
  end
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.6.3
4
+ version: 2.7.0
5
5
  platform: x86_64-linux
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-01-23 00:00:00.000000000 Z
12
+ date: 2026-03-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake