Skip to content

Commit

Permalink
tests(Automattic#230): comment out et al. in typst test
Browse files Browse the repository at this point in the history
  • Loading branch information
grantlemons committed Dec 29, 2024
1 parent 81eb91b commit 4457bff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion harper-core/tests/test_sources/complex_typst.typ
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
#let count = authors.len()
#let authors_slice = authors.slice(0, calc.min(count, 3))
_#if count > 3 {
authors_slice.push("et al.")
// Disabled because et al. isn't parsed properly, but this isn't the
// fault of the typst parser
//
// authors_slice.push("et al.")
authors_slice.join(", ")
} else {
authors_slice.join(", ", last: ", and ")
Expand Down

0 comments on commit 4457bff

Please sign in to comment.