Skip to content

Commit

Permalink
Modified Chapter selector to include Anthos
Browse files Browse the repository at this point in the history
  • Loading branch information
ashprice committed Apr 2, 2024
1 parent 3315538 commit 49d88b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/csl/taxonomy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,8 @@ impl EntryLike for Entry {
!(is_periodical || is_collection)
}
Kind::Chapter => {
select!(Chapter > (Book | Anthology | Proceedings)).matches(self)
select!((Chapter | Anthos) > (Book | Anthology | Proceedings))
.matches(self)
}
Kind::Entry | Kind::EntryDictionary | Kind::EntryEncyclopedia => {
if kind == Kind::EntryDictionary {
Expand Down

0 comments on commit 49d88b2

Please sign in to comment.