Skip to content

Commit

Permalink
improved exporting files with markdown notes
Browse files Browse the repository at this point in the history
  • Loading branch information
antelle committed May 15, 2020
1 parent 451b465 commit 008b615
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions app/templates/export/db.hbs
Expand Up @@ -25,6 +25,9 @@
td:first-of-type {
width: 30%;
}
td.field {
white-space: pre-wrap;
}
</style>
</head>
<body>
Expand Down
8 changes: 4 additions & 4 deletions app/templates/export/entry.hbs
Expand Up @@ -5,12 +5,12 @@
{{#each fields as |field|}}
<tr>
<td>{{field.title}}</td>
<td>
{{#if field.protect}}
<td class="field">
{{~#if field.protect~}}
<code>{{field.value}}</code>
{{else}}
{{~else~}}
{{field.value}}
{{/if}}
{{~/if~}}
</td>
</tr>
{{/each}}
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
@@ -1,7 +1,7 @@
Release notes
-------------
##### v1.14.3 (2020-05-15)
`*` disabled markdown in export
`*` improved exporting files with markdown notes

##### v1.14.2 (2020-05-04)
`-` distinct redirect URIs for storage providers
Expand Down

0 comments on commit 008b615

Please sign in to comment.