1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-01 19:15:01 +02:00

Desktop, Cli: Import <strike>,<s> tags (strikethrough) from Evernote (#3936)

This commit is contained in:
Ian Slinger 2020-10-20 21:47:48 +11:00 committed by GitHub
parent a93bda71fe
commit 456f7ac00c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -556,7 +556,7 @@ function enexXmlToMdArray(stream, resources) {
} else if (isStrongTag(n)) {
section.lines.push('**');
} else if (isStrikeTag(n)) {
section.lines.push('(');
section.lines.push('<s>');
} else if (isInlineCodeTag(n)) {
section.lines.push('`');
} else if (n == 'q') {
@ -739,7 +739,7 @@ function enexXmlToMdArray(stream, resources) {
} else if (isStrongTag(n)) {
section.lines.push('**');
} else if (isStrikeTag(n)) {
section.lines.push(')');
section.lines.push('</s>');
} else if (isInlineCodeTag(n)) {
section.lines.push('`');
} else if (isEmTag(n)) {