commonmarker 2.8.3-x86_64-linux → 2.9.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: 3593d0d4fd03b5997e9d4aff2e604638c690d660ddf3841d7a379218465c4568
4
- data.tar.gz: d072f1f9d950d4c4b8786c38e46f7ed9cea1644e6db142a0bfd9d57461e5aa16
3
+ metadata.gz: a3ae1bc65845718d6ad72f71749e19a1c79a03f3f595f7a99b51a65b1c74adb2
4
+ data.tar.gz: b0931affda50f3e8d68f9478aaa867508e5971382ed38c95799403895a9a0b24
5
5
  SHA512:
6
- metadata.gz: d9bcda325c3638acb229d242d817bd929e0c5ce93484c7712332229a3b2cc451e800c327ea08193f45a04873c2582468a42f345ca52671cff23a0882385f4060
7
- data.tar.gz: 5c58c867c1bc64aae1779f8aac8a1c5bcad579c5332863adc2cd0fe4a8d481a7c9716a2370f944d8fcb6b220b8552d3ee8c1f92b2d018abb6efa09cdce0c07cc
6
+ metadata.gz: df2ec5e2d2abefc34b2ce24aed16e15b73f2149113a52497d0f35c40d6482e96794a3637eb3ff1b6017cf42952ed00bbad290c32755c77ae0e3f350b58959313
7
+ data.tar.gz: fffe876a0fd5fdae63d1650aafc266895a90e8144c38c14d977cb4f175f29d3b8840adec6fcda29d1b4ee7e44d9bfa99d755409ed622ead9de22535b6ca43dad
data/README.md CHANGED
@@ -184,6 +184,7 @@ Note that there is a distinction in comrak for "parse" options and "render" opti
184
184
  | `prefer_fenced` | Always output fenced code blocks, even where an indented one could be used. | `false` |
185
185
  | `tasklist_classes` | Add CSS classes to the HTML output of the tasklist extension | `false` |
186
186
  | `compact_html` | Suppress newlines in pretty-printed HTML output. | `false` |
187
+ | `alert_style` | The style of alert output: `"specific"` (`<div class="markdown-alert">`) or `"semantic"` (`<aside class="admonition">`). | `"specific"` |
187
188
 
188
189
  As well, there are several extensions which you can toggle in the same manner:
189
190
 
@@ -212,6 +213,7 @@ Commonmarker.to_html('"Hi *there*"', options: {
212
213
  | `front_matter_delimiter` | Enables the front matter extension. | `""` |
213
214
  | `multiline_block_quotes` | Enables the multiline block quotes extension. | `false` |
214
215
  | `math_dollars`, `math_code` | Enables the math extension. | `false` |
216
+ | `math_latex` | Enables the math extension with LaTeX-style delimiters (`\(inline\)`, `\[display\]`). | `false` |
215
217
  | `shortcodes` | Enables the shortcodes extension. | `true` |
216
218
  | `wikilinks_title_before_pipe` | Enables the wikilinks extension, placing the title before the dividing pipe. | `false` |
217
219
  | `wikilinks_title_after_pipe` | Enables the wikilinks extension, placing the title after the dividing pipe. | `false` |
Binary file
Binary file
Binary file
Binary file
@@ -28,6 +28,7 @@ module Commonmarker
28
28
  prefer_fenced: false,
29
29
  tasklist_classes: false,
30
30
  compact_html: false,
31
+ alert_style: "specific",
31
32
  }.freeze,
32
33
  extension: {
33
34
  strikethrough: true,
@@ -45,6 +46,7 @@ module Commonmarker
45
46
  multiline_block_quotes: false,
46
47
  math_dollars: false,
47
48
  math_code: false,
49
+ math_latex: false,
48
50
  shortcodes: true,
49
51
  wikilinks_title_before_pipe: false,
50
52
  wikilinks_title_after_pipe: false,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "2.8.3"
4
+ VERSION = "2.9.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.8.3
4
+ version: 2.9.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-07-03 00:00:00.000000000 Z
12
+ date: 2026-07-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake