Skip to content

Commit e184aea

Browse files
committed
Up version to 0.11.3
1 parent d3b7621 commit e184aea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/Autolinker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* Autolinker.js
3-
* 0.11.2
3+
* 0.11.3
44
*
55
* Copyright(c) 2014 Gregory Jacobs <[email protected]>
66
* MIT Licensed. http://www.opensource.org/licenses/mit-license.php
@@ -362,11 +362,11 @@
362362

363363
// Process around anchor tags, and any inner text / html they may have
364364
if( tagName === 'a' ) {
365-
if( !isClosingTag ) { // its the start <a> tag
365+
if( !isClosingTag ) { // it's the start <a> tag
366366
anchorTagStackCount++;
367367
resultHtml.push( this.processTextNode( textToProcess ) );
368368

369-
} else { // its the end </a> tag
369+
} else { // it's the end </a> tag
370370
anchorTagStackCount = Math.max( anchorTagStackCount - 1, 0 ); // attempt to handle extraneous </a> tags by making sure the stack count never goes below 0
371371
if( anchorTagStackCount === 0 ) {
372372
resultHtml.push( textToProcess ); // We hit the matching </a> tag, simply add all of the text from the start <a> tag to the end </a> tag without linking it

dist/Autolinker.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autolinker",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "Simple utility to automatically link the URLs, email addresses, and Twitter handles in a given block of text/HTML",
55
"main": "dist/Autolinker.js",
66
"directories": {

0 commit comments

Comments
 (0)