From f8335998e2e57ff960e020f2634c1b6f58c0ff8c Mon Sep 17 00:00:00 2001 From: Simmo Saan Date: Tue, 9 Jul 2024 18:43:26 +0300 Subject: [PATCH] Fix space before some bib commas (#2552) These somehow appeared when upgrading from v0.11.0 to v0.12.0. --- _layouts/bib.liquid | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/bib.liquid b/_layouts/bib.liquid index 5b58600..a92ee94 100644 --- a/_layouts/bib.liquid +++ b/_layouts/bib.liquid @@ -112,7 +112,7 @@ {% assign more_authors_show = more_authors_show | append: ', ' %} {% endunless %} {%- endfor -%} - {% assign more_authors_show = more_authors_show | regex_replace: '([*∗†‡§¶‖&^]+)', '\1' %} + {%- assign more_authors_show = more_authors_show | regex_replace: '([*∗†‡§¶‖&^]+)', '\1' -%} , and {{entry.journal}}{% endcapture %} {% elsif proceedings contains entry.type %} - {% capture entrytype %}In {{entry.booktitle}} {% endcapture %} + {% capture entrytype %}In {{entry.booktitle}}{% endcapture %} {% elsif thesis contains entry.type %} - {% capture entrytype %}{{entry.school}} {% endcapture %} + {% capture entrytype %}{{entry.school}}{% endcapture %} {% else %} {% capture entrytype %}{% endcapture %} {% endif %}