mirror of
https://git.studyfor.work/actions/action-send-mail.git
synced 2026-01-13 17:46:03 +08:00
19 lines
522 B
JavaScript
19 lines
522 B
JavaScript
showdown.subParser('makeMarkdown.image', function (node) {
|
|
'use strict';
|
|
|
|
var txt = '';
|
|
if (node.hasAttribute('src')) {
|
|
txt += ' + '>';
|
|
if (node.hasAttribute('width') && node.hasAttribute('height')) {
|
|
txt += ' =' + node.getAttribute('width') + 'x' + node.getAttribute('height');
|
|
}
|
|
|
|
if (node.hasAttribute('title')) {
|
|
txt += ' "' + node.getAttribute('title') + '"';
|
|
}
|
|
txt += ')';
|
|
}
|
|
return txt;
|
|
});
|