improvements to the search spec

This commit is contained in:
zadam
2021-01-26 15:54:41 +01:00
parent b936a63db3
commit ee78413ecb
10 changed files with 80 additions and 56 deletions

View File

@@ -12,7 +12,20 @@ const TPL = `
placeholder="note.title = note.title + '- suffix';"/>
</td>
<td class="button-column">
<span class="bx bx-x icon-action action-conf-del"></span>
<div style="display: flex">
<div class="dropdown help-dropdown">
<span class="bx bx-help-circle icon-action" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></span>
<div class="dropdown-menu dropdown-menu-right p-4">
You can execute simple scripts on the matched notes.
For example to append a string to a note's title, use this small script:
<pre>note.title = note.title + ' - suffix';</pre>
</div>
</div>
<span class="bx bx-x icon-action action-conf-del"></span>
</div>
</td>
</tr>`;