·
4 commits
to main
since this release
Added
-
Autolink extension: Now supports configuration of different link types that
should be recognized and converted to links. SeeAutolinkExtension#builderType Default? Description URLYes URL with a protocol such as https://example.comEMAILYes Email address such as [email protected]WWWYes Address beginning with wwwsuch aswww.example.comNote that this changes the behavior of
AutolinkExtension.create()to now also
includeWWWlinks by default. To re-enable the previous behavior, use:AutolinkExtension.builder().linkTypes(AutolinkType.URL, AutolinkType.EMAIL).build();