Indentation

This commit is contained in:
zuzanna-maria 2024-12-09 14:45:40 +01:00
parent 8d5ac837a1
commit 14e56aef79

View File

@ -147,15 +147,15 @@ define([
});
return table;
}}).addRule('strikethrough', {
filter: ['s', 'del', 'strike'],
replacement: function (content) {
return '~' + content + '~';
}
filter: ['s', 'del', 'strike'],
replacement: function (content) {
return '~' + content + '~';
}
}).addRule('strikethrough', {
filter: ['u'],
replacement: function (content) {
return '<u>' + content + '</u>';
}
filter: ['u'],
replacement: function (content) {
return '<u>' + content + '</u>';
}
})
.turndown(toExport);
var mdBlob = new Blob([md], {