From 6f8e790a22c03fe2a03ecdbeb57ca4abcb803140 Mon Sep 17 00:00:00 2001 From: Tester23 Date: Tue, 16 Jan 2024 14:36:28 +0100 Subject: [PATCH] fix a bug in docs script that was hiding first line of script --- scripts/getcommands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/getcommands.js b/scripts/getcommands.js index d14a288af..e03828a7d 100644 --- a/scripts/getcommands.js +++ b/scripts/getcommands.js @@ -934,6 +934,7 @@ for (let i = 0; i < autoexecExamples.length; i++) { autoexecsmdshort += '
'; autoexecsmdshort += '\n'; autoexecsmdshort += "```"; + autoexecsmdshort += '\n'; autoexecsmdshort += exe.fileText; autoexecsmdshort += '\n'; autoexecsmdshort += "```";