From d99695ddc8b75f4637f48baa39a2aa51866681f1 Mon Sep 17 00:00:00 2001 From: Ocheretovich Date: Wed, 15 Apr 2026 11:44:24 +0300 Subject: [PATCH] chore: strip whitespace from plain author entries --- _includes/authorlist.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/authorlist.html b/_includes/authorlist.html index bfc661cf..826ba73b 100644 --- a/_includes/authorlist.html +++ b/_includes/authorlist.html @@ -7,7 +7,7 @@ {%- assign authorparts=author|split:"(@" -%} {{authorparts[0]|strip}} {%- else -%} - {{author}} + {{ author | strip }} {%- endif -%} {% if forloop.last == false %}, {% endif %} -{%- endfor -%} \ No newline at end of file +{%- endfor -%}