commonmarker 2.6.2-aarch64-linux → 2.6.3-aarch64-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: a7d1b269e5e26a3df5e7eba1a88c43c9de08adfccb74181f5a4026d827fd040a
4
- data.tar.gz: 514e264ff45db097c1e7594a402ce2face4c7cbcecb8ebe538722d64420fc40c
3
+ metadata.gz: 99cb08594baefe26118b6347dc174524ea4675df30456102542b544df2593079
4
+ data.tar.gz: 3f60249a7925b3c0379e9402b1b92984a2a79a17b4173d5b14547eace70ab118
5
5
  SHA512:
6
- metadata.gz: 01b27ef818d2bc2513eab39d04e82ce1e3347dfacbfec26e2290e652a84395bbf8ae43f3a8157f28adbec39b2b451c9c8ff88f2c7c08cccf45a37a1068f73cdc
7
- data.tar.gz: 58e24f93aabbc5e719a86a65a98ef9fb98a8bd73d0686109c4099aa0edbeb7bbedfecb255dfe6425b9fc772041f6c77d0f4dfc64c1fc16d6d77249a7d8bbd25f
6
+ metadata.gz: e0278439a7e42eb79d45b66a15e4a6a8efb22098ac10e07d4a6eaef8d6cd21778bacc8b45e94f3069a7971e1b73507a1b93aec6bde1537e7b8a037f65937745b
7
+ data.tar.gz: ec40e7d074b5e78fb5e51ed37127dfd884efd8d80e7ba50eda89c6f9119010b1f9a28d5b7241b6a918f38038247719ece44e8cfdbf23ddc24fc966828e7b2fd7
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,7 +177,6 @@ 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` |
@@ -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,7 +22,6 @@ 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,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "2.6.2"
4
+ VERSION = "2.6.3"
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.6.3
5
5
  platform: aarch64-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-19 00:00:00.000000000 Z
12
+ date: 2026-01-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake