Skip to content

Commit bc96ed7

Browse files
committed
Up version number to 0.15.1
1 parent 9cce7f5 commit bc96ed7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

dist/Autolinker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
/*!
1818
* Autolinker.js
19-
* 0.15.0
19+
* 0.15.1
2020
*
21-
* Copyright(c) 2014 Gregory Jacobs <[email protected]>
21+
* Copyright(c) 2015 Gregory Jacobs <[email protected]>
2222
* MIT Licensed. http://www.opensource.org/licenses/mit-license.php
2323
*
2424
* https://github.com/gregjacobs/Autolinker.js
@@ -857,7 +857,7 @@
857857
htmlRegex : (function() {
858858
var tagNameRegex = /[0-9a-zA-Z][0-9a-zA-Z:]*/,
859859
attrNameRegex = /[^\s\0"'>\/=\x01-\x1F\x7F]+/, // the unicode range accounts for excluding control chars, and the delete char
860-
attrValueRegex = /(?:".*?"|'.*?'|[^'"=<>`\s]+)/, // double quoted, single quoted, or unquoted attribute values
860+
attrValueRegex = /(?:"[^"]*?"|'[^']*?'|[^'"=<>`\s]+)/, // double quoted, single quoted, or unquoted attribute values
861861
nameEqualsValueRegex = attrNameRegex.source + '(?:\\s*=\\s*' + attrValueRegex.source + ')?'; // optional '=[value]'
862862

863863
return new RegExp( [

0 commit comments

Comments
 (0)