Skip to content

Commit

Permalink
Desktop, Cli: Import <strike>,<s> tags (strikethrough) from Evernote (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjs authored Oct 20, 2020
1 parent a93bda7 commit 456f7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReactNativeClient/lib/import-enex-md-gen.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down Expand Up @@ -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)) {
Expand Down

0 comments on commit 456f7ac

Please sign in to comment.