Releases: gregjacobs/Autolinker.js
Releases · gregjacobs/Autolinker.js
v0.16.0
- Add initial support for matching phone numbers. Thanks @sherbondy
v0.15.3
- Fix to not autolink
javascript:
andvbscript:
uri schemes in a case-insensitive manner. Thanks @JordanMilne!
v0.15.2
- Don't include HTML quote entities (
"
) at the end of a URL as part of the URL. Fixes #76. Thanks @warrenrumak
v0.15.1
- Fix issue where a line break within an HTML tag's attribute value could cause the tag to not be parsed correctly.
v0.15.0
- Fix for
<!DOCTYPE>
tag html parsing, which could cause the regex engine to freeze with 100% cpu for certain inputs. - Fix for proper handling of
<A>
tags (with capitalized tag name).
v0.14.1
- Filter out
javascript:
andvbscript:
URI schemes from being autolinked
v0.14.0
- Match URI scheme names that are greater than 9 characters, and allow for digits,
+
,.
, and-
in the scheme name. (Ex:chrome-extension:
)
v0.13.1
- Add proper matching of square brackets in URLs.
- Don't include a trailing '?' as part of a URL match (it is optional for URLs without query parameters, and it may be part of a sentence)
v0.13.0
- Add support for localhost URLs. Autolinker will now link
http://localhost
andhttp://localhost:8080
v0.12.5
- Add support for
:
and'
characters in URLs (http://tools.ietf.org/html/rfc3986#page-13). Thanks @jrsquared - Support URL introductions like "link:http://example.com". Thanks @jrsquared, again :)
- Clean up UMD generation in Gruntfile. Thanks @erwinvaneyk