From 962fb5b27588c985cde2cdf934c820cf0ffe1f0c Mon Sep 17 00:00:00 2001 From: WfKe9vLwSvv7rN <96372288+WfKe9vLwSvv7rN@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:13:51 +0000 Subject: [PATCH] Fix spacing around `rawhtml` shortcode Removes line break from generated HTML output. This line break renders in browsers as an unwanted space. --- layouts/shortcodes/rawhtml.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/shortcodes/rawhtml.html b/layouts/shortcodes/rawhtml.html index 520ec17..9350c13 100644 --- a/layouts/shortcodes/rawhtml.html +++ b/layouts/shortcodes/rawhtml.html @@ -1,2 +1,2 @@ -{{.Inner}} \ No newline at end of file +{{- .Inner -}} \ No newline at end of file