fix bug where proceedings do not render (#913)
This commit is contained in:
parent
bfc47258d7
commit
281cc82d41
|
|
@ -106,9 +106,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Journal/Book title and date -->
|
<!-- Journal/Book title and date -->
|
||||||
|
{% assign proceedings = "inproceedings, incollection" | split: ','%}
|
||||||
{% if entry.type == "article" -%}
|
{% if entry.type == "article" -%}
|
||||||
{%- capture entrytype -%}<em>{{entry.journal}}</em>{%- endcapture -%}
|
{%- capture entrytype -%}<em>{{entry.journal}}</em>{%- endcapture -%}
|
||||||
{%- elsif ["inproceedings", "incollection"] contains entry.type -%}
|
{%- elsif proceedings contains entry.type -%}
|
||||||
{%- capture entrytype -%}<em>In {{entry.booktitle}}</em> {%- endcapture -%}
|
{%- capture entrytype -%}<em>In {{entry.booktitle}}</em> {%- endcapture -%}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
{%- capture entrytype -%}{%- endcapture -%}
|
{%- capture entrytype -%}{%- endcapture -%}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue