From 68319592c166635d40894f50c020796e8966d2e5 Mon Sep 17 00:00:00 2001 From: "jf@intrix" <2344609+funai@users.noreply.github.com> Date: Fri, 14 Jul 2023 19:34:59 +0900 Subject: [PATCH] Removed indent that can break extended source. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 25859c8..25f42dd 100755 --- a/index.js +++ b/index.js @@ -309,7 +309,7 @@ function renderFile(path, rootPath) { pugOptions.filename = page.path; if (page.data.layout) { page.extended = `extends ${pugOptions.includes}/${page.data.layout} - ${page.content}`; +${page.content}`; } else { page.extended = page.content; }