Fixed bug where <br/> was returned as <br>.

This commit is contained in:
Alexandre Gigliotti
2015-08-25 13:34:21 -07:00
parent 4a3b6f9d50
commit e8545de30a
3 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ var inline = function (html, filename) {
$(element).attr('src', src); $(element).attr('src', src);
}); });
return { return {
html: $.html(), html: $.xml(),
files: files files: files
}; };
}; };

View File

@@ -57,7 +57,7 @@ var inline = co.wrap(function * (html, filename, options) {
})); }));
return { return {
html: $.html(), html: $.xml(),
files: files files: files
}; };
}); });

View File

@@ -36,9 +36,9 @@ var inline = function (html, filename) {
}); });
return { return {
html: $.html(), html: $.xml(),
files: files files: files
}; };
}; };
module.exports = inline; module.exports = inline;