Fixed problem with Markdown image handling

print-window-tiddler
Jermolene 2014-06-18 14:56:32 +01:00
rodzic 44cb3bc100
commit b8aedf2ca3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -35,7 +35,7 @@ function transformNode(node) {
widget.children = transformNodes(node.slice(p++));
// Massage images into the image widget
if(widget.tag === "img") {
widget.tag = "$image";
widget.type = "image";
if(widget.attributes.alt) {
widget.attributes.tooltip = widget.attributes.alt;
delete widget.attributes.alt;