Skip to content

Commit

Permalink
Update Society of Biblical Literature Full Note for 6.1.6
Browse files Browse the repository at this point in the history
SBL Handbook 6.1.6 recommends using DOI instead of URL if possible. This change checks for DOI variable and prefers it over URL if present.
  • Loading branch information
dhacker29 committed Dec 27, 2021
1 parent 4479a5a commit 77e3fca
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions society-of-biblical-literature-fullnote-bibliography.csl
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,14 @@
<text macro="archive-note"/>
</else-if>
</choose>
<text variable="URL"/>
<choose>
<if variable="DOI">
<text variable="DOI" prefix="https://doi.org/"/>
</if>
<else>
<text variable="URL"/>
</else>
</choose>
</group>
</macro>
<macro name="access">
Expand All @@ -1003,7 +1010,14 @@
<text macro="archive"/>
</else-if>
</choose>
<text variable="URL"/>
<choose>
<if variable="DOI">
<text variable="DOI" prefix="https://doi.org/"/>
</if>
<else>
<text variable="URL"/>
</else>
</choose>
</group>
</macro>
<macro name="unsigned-dictionary-note">
Expand Down

0 comments on commit 77e3fca

Please sign in to comment.