From 607ff6af4412b19383fb6118dbea55c0cd044720 Mon Sep 17 00:00:00 2001 From: George <31376482+george-gca@users.noreply.github.com> Date: Wed, 10 Jul 2024 15:20:39 -0300 Subject: [PATCH] Fixed spacing between {{}} in bib.liquid --- _layouts/bib.liquid | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/_layouts/bib.liquid b/_layouts/bib.liquid index a92ee94b6160..1d0a75b2a435 100644 --- a/_layouts/bib.liquid +++ b/_layouts/bib.liquid @@ -16,7 +16,7 @@ {% endif -%} > {% if site.data.venues[entry.abbr].url %} - {{ entry.abbr }} + {{ entry.abbr }} {% else %}
{{- entry.abbr -}}
{% endif %} @@ -45,7 +45,7 @@ {% endif %} -
+
{{ entry.title }}
@@ -88,7 +88,7 @@ {%- else -%} {%- if coauthor_url -%} - + {{- author.first }} {{ author_last_html -}} @@ -116,18 +116,18 @@ , and {{- more_authors_hide -}} @@ -149,11 +149,11 @@ {% assign proceedings = 'inproceedings,incollection' | split: ',' %} {% assign thesis = 'thesis,mastersthesis,phdthesis' | split: ',' %} {% if entry.type == 'article' %} - {% capture entrytype %}{{entry.journal}}{% endcapture %} + {% capture entrytype %}{{ 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 %} @@ -161,13 +161,13 @@ {% capture entrymonth %}{{ " " }}{{ entry.month | capitalize }}{% endcapture %} {% endif %} {% if entry.year %} - {% capture entryyear %}{{ " " }}{{entry.year}}{% endcapture %} + {% capture entryyear %}{{ " " }}{{ entry.year }}{% endcapture %} {% endif %} {% if entry.location %} - {% capture entrytype %}{{entrytype}}{{ ", " }}{{entry.location}}{% endcapture %} + {% capture entrytype %}{{ entrytype }}{{ ", " }}{{ entry.location }}{% endcapture %} {% endif -%} {% if entry.additional_info %} - {% capture entrytype %}{{entrytype}}{{entry.additional_info | markdownify | remove: '

' | remove: '

' }}{% endcapture %} + {% capture entrytype %}{{ entrytype }}{{ entry.additional_info | markdownify | remove: '

' | remove: '

' }}{% endcapture %} {% endif %} {% capture hook_exists %}{% file_exists _includes/hook/bib.liquid %}{% endcapture %} {% if hook_exists == 'true' %}