| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| commonmark-java 0.27.0 source code.tar.gz | 2025-10-12 | 348.5 kB | |
| commonmark-java 0.27.0 source code.zip | 2025-10-12 | 571.9 kB | |
| README.md | 2025-10-12 | 854 Bytes | |
| Totals: 3 Items | 921.3 kB | 0 | |
Added
- Autolink extension: Now supports configuration of different link types that
should be recognized and converted to links. See
AutolinkExtension#builder
| Type | Default? | Description |
|---|---|---|
URL |
Yes | URL with a protocol such as https://example.com |
EMAIL |
Yes | Email address such as foo@example.com |
WWW |
Yes | Address beginning with www such as www.example.com |
Note that this changes the behavior of AutolinkExtension.create() to now also
include WWW links by default. To re-enable the previous behavior, use:
java
AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();