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:
parent
a93bda71fe
commit
456f7ac00c
@ -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)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user