1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 10:13:16 +00:00

We shouldn't use the source of images as their text in text/plain renderings

This commit is contained in:
Jeremy Ruston 2012-01-17 15:21:56 +00:00
parent 8cfff2c2fa
commit a6de27b348

View File

@ -40,7 +40,7 @@ exports.macro = {
});
}
} else if (type === "text/plain") {
return params.text ? params.text : params.src;
return params.text ? params.text : "";
}
}
};