From: Ian Hunter Date: Sat, 29 Jun 2013 04:58:08 +0000 (-0600) Subject: More tags added to collapseWhitespaceSmart whitelist X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=119dbd54f862b31e617ee261ac50856c67108ca4;p=html-minifier.git More tags added to collapseWhitespaceSmart whitelist cf. http://www.w3.org/Amaya/User/doc/HTML-elements/inline.html --- diff --git a/src/htmlminifier.js b/src/htmlminifier.js index e7e6405..b4bced9 100644 --- a/src/htmlminifier.js +++ b/src/htmlminifier.js @@ -42,7 +42,7 @@ function collapseWhitespaceSmart(str, prevTag, nextTag) { // array of tags that will maintain a single space outside of them - var tags = ['a', 'b', 'big', 'button', 'code', 'em', 'font', 'i', 'kbd', 'mark', 'q', 's', 'small', 'span', 'strike', 'strong', 'sub', 'sup', 'tt', 'u']; + var tags = ['a', 'abbr', 'acronym', 'b', 'big', 'button', 'code', 'del', 'dfn', 'em', 'font', 'i', 'ins', 'kbd', 'mark', 'q', 's', 'small', 'span', 'strike', 'strong', 'sub', 'sup', 'tt', 'u', 'var']; if (prevTag && prevTag !== 'img' && (prevTag.substr(0,1) !== '/' || ( prevTag.substr(0,1) === '/' && tags.indexOf(prevTag.substr(1)) === -1))) {