commonmarker 2.6.2 → 2.6.3

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: 5ab93426a13e5c6c696a2d491e4c72e52e58fa8594f0369f84e77c26a1135f16
4
- data.tar.gz: b11b4caf5a61cd7d048a6997e09d85db92f913d1362f64e95f6cb88204edab5a
3
+ metadata.gz: fe0a8d460b6c55f6ac1d7a04df66e096327dd86bb36f90dabc0f5831b9b04c7c
4
+ data.tar.gz: 45b232a82f72ecd1ea3a8f5f61c41d394494570cf562ae9bc162dcba95751112
5
5
  SHA512:
6
- metadata.gz: '08dedde53445b5a145a7ecd49c32ce9c3ec0549169f57e35a687c06e10195c449f7affe263f96d32b73b3f863ecccf308fe099410e744da210b27fde7867bafd'
7
- data.tar.gz: bbae839d659fa99a6d11914edc7ef59a3c87aca264595e14e1a468614a0d845265052c8ae51318898275edd4a5bcc70990cf372c3c8bc70c0b0b4277029736f2
6
+ metadata.gz: 3e30e85a5bb4dbbeabb14024093d4a85118b73553288f7e2969e6464e114785d4b89d0bc7fd9c39efd2df5736257aa9fbfcad166fa4d64403817af519faaf94b
7
+ data.tar.gz: ff6cb1383f0d5711ede179b1ace7b8c4c7a2580e2ed90617a7ea701bd7e59cdd7d47baeaf1f9bbbb051c204272ff48577d70e90430f9eb840b6ae53d09fe0943
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,14 +1,14 @@
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: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  - Ashe Connor
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-01-19 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  - !ruby/object:Gem::Version
107
107
  version: '3.4'
108
108
  requirements: []
109
- rubygems_version: 3.6.2
109
+ rubygems_version: 4.0.3
110
110
  specification_version: 4
111
111
  summary: CommonMark parser and renderer. Written in Rust, wrapped in Ruby.
112
112
  test_files: []