| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| commonmark-java 0.29.0 source code.tar.gz | 2026-06-20 | 408.9 kB | |
| commonmark-java 0.29.0 source code.zip | 2026-06-20 | 649.1 kB | |
| README.md | 2026-06-20 | 1.3 kB | |
| Totals: 3 Items | 1.1 MB | 0 | |
Added
- Support rendering GFM task list items to Markdown (#433)
- Support rendering YAML front matter to Markdown (#434)
- Alerts
- Allow customizing HTML attributes for alert title
<p>tag viaAttributeProvider(#427) - New configuration for
AlertsExtensionto allow authors to provide custom titles per alert. See the custom titles section of the alerts README for more information. (#430) - New configuration for
AlertsExtensionto allow alerts to be nested within other blocks (including other alerts). See this section of the alerts README for more information. (#430) - New configuration for
AlertsExtensionto allow the set of alert types (including standard GFM types) to be completely overwritten. (#435)java var extension = AlertsExtension.builder() .setAllowedTypes(Map.ofEntries( Map.entry("IMPORTANT", "Important"), Map.entry("WARNING", "Warning") Map.entry("BUG", "Known Bug") )) .build(); - Support rendering alerts to text (#437)