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

pull/3959/head
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
1 changed files with 2 additions and 2 deletions

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)) {