mirror of https://github.com/keeweb/keeweb
improved exporting files with markdown notes
parent
451b465e4f
commit
008b615903
|
@ -25,6 +25,9 @@
|
|||
td:first-of-type {
|
||||
width: 30%;
|
||||
}
|
||||
td.field {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -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}}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue