From 4a0c2b6a494f3553fd16361a93ae2fced305800b Mon Sep 17 00:00:00 2001 From: MatthewOwens Date: Tue, 21 Jul 2020 17:09:11 +0100 Subject: [PATCH] removed p tags --- scripts/posts.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/posts.awk b/scripts/posts.awk index a024f66..b78d008 100644 --- a/scripts/posts.awk +++ b/scripts/posts.awk @@ -8,7 +8,7 @@ BEGIN { file = sprintf("%s-%s-%s-%s", $1, $2, $3, $4) string = sprintf("%s/%s/%s - %s", $1, $2, $3, $4) - printf("\t

%s

\n", file, string) + printf("\t
%s
\n", file, string) } END { -- 2.20.1