We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2418d7b commit 5a772d3Copy full SHA for 5a772d3
CHANGELOG.md
@@ -4,6 +4,7 @@
4
- Fix searchbox css
5
- Rewwork toolbar
6
- Empty start note
7
+- Added empty line between YAML and body
8
9
### v2.0.6
10
- Added contextmenu
notes.php
@@ -219,7 +219,7 @@
219
if(strlen($nauthor) > 3) $yaml_new[] = trim("author: ".$nauthor).' ';
220
if(strlen($nsource) > 3) $yaml_new[] = trim("source: ".$nsource).' ';
221
$yaml_new[] = $yh_be;
222
- $note_content = implode("\r\n", $yaml_new)."\r\n".$note_content;
+ $note_content = implode("\r\n", $yaml_new)."\r\n\r\n".$note_content;
223
}
224
$new_name = $note_name.".".$note_type;
225
} else {
0 commit comments