Fix space before some bib commas (#2552)

These somehow appeared when upgrading from v0.11.0 to v0.12.0.
This commit is contained in:
Simmo Saan 2024-07-09 18:43:26 +03:00 committed by GitHub
parent 0a40a22739
commit f8335998e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@
{% assign more_authors_show = more_authors_show | append: ', ' %}
{% endunless %}
{%- endfor -%}
{% assign more_authors_show = more_authors_show | regex_replace: '([*∗†‡§¶‖&^]+)', '<sup>\1</sup>' %}
{%- assign more_authors_show = more_authors_show | regex_replace: '([*∗†‡§¶‖&^]+)', '<sup>\1</sup>' -%}
, and
<span
class="more-authors"
@ -151,9 +151,9 @@
{% if entry.type == 'article' %}
{% capture entrytype %}<em>{{entry.journal}}</em>{% endcapture %}
{% elsif proceedings contains entry.type %}
{% capture entrytype %}<em>In {{entry.booktitle}}</em> {% endcapture %}
{% capture entrytype %}<em>In {{entry.booktitle}}</em>{% endcapture %}
{% elsif thesis contains entry.type %}
{% capture entrytype %}<em>{{entry.school}}</em> {% endcapture %}
{% capture entrytype %}<em>{{entry.school}}</em>{% endcapture %}
{% else %}
{% capture entrytype %}{% endcapture %}
{% endif %}