bump: 3.0.2

This commit is contained in:
qingwei.li 2017-02-19 15:27:39 +08:00
commit 2c9fdbe7f9
5 changed files with 25 additions and 14 deletions

View file

@ -3008,7 +3008,10 @@ renderer.link = function (href, title, text) {
} else {
blank = ' target="_blank"';
}
return ("<a href=\"" + href + "\" title=\"" + (title || text) + "\"" + blank + ">" + text + "</a>")
if (title) {
title = " title=\"" + title + "\"";
}
return ("<a href=\"" + href + "\"" + title + blank + ">" + text + "</a>")
};
renderer.paragraph = function (text) {
if (/^!&gt;/.test(text)) {