From c1cd66b5891067bb0c4a68f365e3ef0d3966be0e Mon Sep 17 00:00:00 2001 From: Bart Louwers Date: Wed, 22 Apr 2026 12:36:23 +0200 Subject: [PATCH 1/2] Prevent double newline after heading atx-headline.qml --- atx-headline/atx-headline.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atx-headline/atx-headline.qml b/atx-headline/atx-headline.qml index de1dffc..3e2ef4b 100644 --- a/atx-headline/atx-headline.qml +++ b/atx-headline/atx-headline.qml @@ -18,7 +18,7 @@ QtObject { * @return {string} the headline of the note */ function handleNewNoteHeadlineHook(headline) { - var text = "# " + headline + "\n"; + var text = "# " + headline; return text; } From 55700abc507c59c2084cb9b9ae6aa14657cc039e Mon Sep 17 00:00:00 2001 From: Bart Louwers Date: Wed, 22 Apr 2026 13:06:52 +0200 Subject: [PATCH 2/2] Update info.json --- atx-headline/info.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atx-headline/info.json b/atx-headline/info.json index 8cea9bc..f52f404 100644 --- a/atx-headline/info.json +++ b/atx-headline/info.json @@ -2,9 +2,9 @@ "name": "ATX Headline", "identifier": "atx-headline", "script": "atx-headline.qml", - "authors": ["@dohliam"], + "authors": ["@dohliam", "@louwers"], "platforms": ["linux", "macos", "windows"], - "version": "0.0.1", + "version": "0.0.2", "minAppVersion": "20.6.0", "description": "Fix new note headlines to use atx rather than setext headers. More information can be found at atx-headline." }