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:
parent
0a40a22739
commit
f8335998e2
|
|
@ -112,7 +112,7 @@
|
||||||
{% assign more_authors_show = more_authors_show | append: ', ' %}
|
{% assign more_authors_show = more_authors_show | append: ', ' %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{%- endfor -%}
|
{%- 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
|
, and
|
||||||
<span
|
<span
|
||||||
class="more-authors"
|
class="more-authors"
|
||||||
|
|
@ -151,9 +151,9 @@
|
||||||
{% if entry.type == 'article' %}
|
{% if entry.type == 'article' %}
|
||||||
{% capture entrytype %}<em>{{entry.journal}}</em>{% endcapture %}
|
{% capture entrytype %}<em>{{entry.journal}}</em>{% endcapture %}
|
||||||
{% elsif proceedings contains entry.type %}
|
{% 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 %}
|
{% elsif thesis contains entry.type %}
|
||||||
{% capture entrytype %}<em>{{entry.school}}</em> {% endcapture %}
|
{% capture entrytype %}<em>{{entry.school}}</em>{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture entrytype %}{% endcapture %}
|
{% capture entrytype %}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue