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 +4 -4
- data/README.md +2 -0
- data/lib/commonmarker/3.2/commonmarker.so +0 -0
- data/lib/commonmarker/3.3/commonmarker.so +0 -0
- data/lib/commonmarker/3.4/commonmarker.so +0 -0
- data/lib/commonmarker/4.0/commonmarker.so +0 -0
- data/lib/commonmarker/config.rb +2 -0
- data/lib/commonmarker/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3ae1bc65845718d6ad72f71749e19a1c79a03f3f595f7a99b51a65b1c74adb2
|
|
4
|
+
data.tar.gz: b0931affda50f3e8d68f9478aaa867508e5971382ed38c95799403895a9a0b24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/commonmarker/config.rb
CHANGED
|
@@ -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,
|
data/lib/commonmarker/version.rb
CHANGED
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.
|
|
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-
|
|
12
|
+
date: 2026-07-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|