Skip to content

Commit

Permalink
Up version number to 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gregjacobs committed Jan 4, 2015
1 parent 9cce7f5 commit bc96ed7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dist/Autolinker.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

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

return new RegExp( [
Expand Down
Loading

0 comments on commit bc96ed7

Please sign in to comment.