prevent drawing separators on starting lines of fields #17
Reference in New Issue
Block a user
No description provided.
Delete Branch "rajayonin/rivet-typst:fix-consecutive-ranges"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On non-consecutive ranges, we were drawing the starting line on top of the separator, which lead to some visual glitches in some viewers (e.g. Chrome).
@@ -392,1 +392,4 @@range-boundaries.push(start-i)range-boundaries.push(end-i)}range-boundaries.dedup()Not really useful since we're only checking if an index is in the list later on (line 431/434)
Also,
dedupdoesn't modify the array in place so the result should be reassigned to the variableWhat do you suggest we do instead?
It seems like removing duplicates is not really necessary because the only time we read from the list is to check whether it contains particular indices. I'd suggest not calling
dedupat allOk, done.
3a0331f33btob6f2fd99b8View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.