diff options
author | Thanos Apollo <[email protected]> | 2024-12-06 16:36:10 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-12-06 16:36:10 +0200 |
commit | 2bdd2247b4041f47b7c60cd1829f404ed659c48d (patch) | |
tree | aea22a144cd0d190c4fc226040b7553cb153052b /org-gnosis.el | |
parent | 9e0d7da6a10af00c7c0502b135ce61424412989c (diff) |
[fix] Add space for filetags.
* Add space to properly insert filetags.
Diffstat (limited to 'org-gnosis.el')
-rw-r--r-- | org-gnosis.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-gnosis.el b/org-gnosis.el index e93dde2..65175fd 100644 --- a/org-gnosis.el +++ b/org-gnosis.el @@ -313,7 +313,7 @@ If called with ARG do not initialize the database." org-gnosis-dir)))) (find-file file) (unless (file-exists-p file) - (insert (format "#+title: %s\n#+filetags:\n" title)) + (insert (format "#+title: %s\n#+filetags: \n" title)) (org-id-get-create) (and extras (insert extras)) (org-mode) |