diff --git a/app/scripts/comp/format/kdbx-to-html.js b/app/scripts/comp/format/kdbx-to-html.js index b0a654f3..c4d6be39 100644 --- a/app/scripts/comp/format/kdbx-to-html.js +++ b/app/scripts/comp/format/kdbx-to-html.js @@ -17,7 +17,7 @@ const FieldMapping = [ { name: 'UserName', locStr: 'user' }, { name: 'Password', locStr: 'password', protect: true }, { name: 'URL', locStr: 'website' }, - { name: 'Notes', locStr: 'notes', markdown: true } + { name: 'Notes', locStr: 'notes' } ]; const KnownFields = { 'Title': true }; @@ -42,21 +42,12 @@ function walkEntry(db, entry, parents) { const path = parents.map(group => group.name).join(' / '); const fields = []; for (const field of FieldMapping) { - let value = entryField(entry, field.name); + const value = entryField(entry, field.name); if (value) { - let html = false; - if (field.markdown && AppSettingsModel.useMarkdown) { - const converted = MdToHtml.convert(value); - if (converted.html) { - value = converted.html; - html = true; - } - } fields.push({ title: StringFormat.capFirst(Locale[field.locStr]), value, - protect: field.protect, - html + protect: field.protect }); } } diff --git a/app/templates/export/entry.hbs b/app/templates/export/entry.hbs index 51587221..64d805a6 100644 --- a/app/templates/export/entry.hbs +++ b/app/templates/export/entry.hbs @@ -9,11 +9,7 @@ {{#if field.protect}} {{field.value}} {{else}} - {{#if field.html}} - {{{field.value}}} - {{else}} - {{field.value}} - {{/if}} + {{field.value}} {{/if}} diff --git a/release-notes.md b/release-notes.md index e609b0fa..8b1856dd 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,8 @@ Release notes ------------- +##### v1.14.3 (2020-05-15) +`*` disabled markdown in export + ##### v1.14.2 (2020-05-04) `-` distinct redirect URIs for storage providers