chore(subParsers/images): fix jshint error

Quick fix for jshint error that was preventing Travis to test the lib properly
This commit is contained in:
Estevão Soares dos Santos 2015-06-10 14:09:59 +01:00
parent 9a2411b05f
commit 6f01208836

View File

@ -39,7 +39,7 @@ showdown.subParser('images', function (text, options, globals) {
url = showdown.helper.escapeCharacters(url, '*_', false);
var result = '<img src="' + url + '" alt="' + altText + '"';
if (title != "") {
if (title) {
title = title.replace(/"/g, '&quot;');
title = showdown.helper.escapeCharacters(title, '*_', false);
result += ' title="' + title + '"';