commonmarker 2.6.2-aarch64-linux-musl → 2.7.0-aarch64-linux-musl

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: 9d1f4ceec5dc688dc77d72e7a4337aa0d2d9fdb23da18e0551e0a6f52d65d42d
4
- data.tar.gz: a19b95cbbfccb52245ce54a1fee55837ca98f530676fffa4f0d38818e0ed0a50
3
+ metadata.gz: 22a75140c94cf9b1b04b9fda0086565d961ca25f0d45c01b16ba875dd7376455
4
+ data.tar.gz: e655411a6e829eedd311e5ab6ceae7a5d2528ff9440c67cdf59dd293f23531d1
5
5
  SHA512:
6
- metadata.gz: 05457ff853c0769ba32d18ee043a5e5f48227db488ff28efd40b6460d83148503884b2ab8250103977ecd28ddad6b471298d9f061e2be80c83581c0e21bede5d
7
- data.tar.gz: 83dffebd3d116d3d708966fb2aba0b909b635b95ce086d6d8e702abac08aee222e9494419fe2416409797f61ca8c2d7b1d77a9ee6c54f8b8ff20f51af8768824
6
+ metadata.gz: 9e5f54783e05e24835c3af4059888ca4ae14b64ce6393cd49f7df3f77e825f3247bd5ff84b3666f55ded65b4dd5e16eca72effb292885cbc4a1b89998a765eac
7
+ data.tar.gz: 46cb39bb673d5ff9cdc04b9e899ddad0e210acdf73c9083f1f7188d6b75ca98f1affd78d75864d8a2335f55fcf5b1a415640b394bf9f3f3f6cb15503264aa3b0
data/README.md CHANGED
@@ -163,6 +163,7 @@ Note that there is a distinction in comrak for "parse" options and "render" opti
163
163
  | `relaxed_tasklist_matching` | Enables relaxing of the tasklist extension matching, allowing any non-space to be used for the "checked" state instead of only `x` and `X`. | `false` |
164
164
  | `relaxed_autolinks` | Enable relaxing of the autolink extension parsing, allowing links to be recognized when in brackets, as well as permitting any url scheme. | `false` |
165
165
  | `leave_footnote_definitions` | Allow footnote definitions to remain in their original positions instead of being moved to the document's end (only affects AST) | `false` |
166
+ | `ignore_setext` | Ignores setext-style headings. | `false` |
166
167
 
167
168
  ### Render options
168
169
 
@@ -176,11 +177,11 @@ Note that there is a distinction in comrak for "parse" options and "render" opti
176
177
  | `escape` | Escape raw HTML instead of clobbering it. | `false` |
177
178
  | `sourcepos` | Include source position attribute in HTML and XML output. | `false` |
178
179
  | `escaped_char_spans` | Wrap escaped characters in span tags. | `true` |
179
- | `ignore_setext` | Ignores setext-style headings. | `false` |
180
180
  | `ignore_empty_links` | Ignores empty links, leaving the Markdown text in place. | `false` |
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
@@ -11,6 +11,7 @@ module Commonmarker
11
11
  relaxed_tasklist_matching: false,
12
12
  relaxed_autolinks: false,
13
13
  leave_footnote_definitions: false,
14
+ ignore_setext: false,
14
15
  }.freeze,
15
16
  render: {
16
17
  hardbreaks: true,
@@ -21,11 +22,11 @@ module Commonmarker
21
22
  escape: false,
22
23
  sourcepos: false,
23
24
  escaped_char_spans: true,
24
- ignore_setext: false,
25
25
  ignore_empty_links: false,
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.2"
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.2
4
+ version: 2.7.0
5
5
  platform: aarch64-linux-musl
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-19 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