Colin Woodbury

Results 416 comments of Colin Woodbury

> Could a generic method be created for determining if which reducer should be used? I'll look into this. It occurs to me that many (all?) of the `foo-transduce` functions...

Let's revisit this after I'm back. Thanks for your patience.

I need this today, so I'm merging it in.

> ```clojure > io.github.nextjournal/markdown {:git/sha "6683c48dfdb23404a23057817b6ac3acf0310bca"} > ``` Confirmed that this works. I'm able to load Clerk with Java 22.

I just updated to Clerk `0.17.1102` and it all seems to work now without the manual git pin on `io.github.nextjournal/markdown`. Thanks!

Spaces! My lord what has the world come to. Okay I've looked at the associated issues on your repository, as well as the 7zip releases page. It seems that the...

The following test passes: ```rust #[test] fn mess_7zip() { cmp_messes("22.01-ZS-v1.5.5-R2", "22.01-ZS-v1.5.6-R2"); } fn cmp_messes(a: &str, b: &str) { let x = Mess::new(a).unwrap(); let y = Mess::new(b).unwrap(); assert!(x < y, "{}...

Let's discuss this. Were I to support spaces in `Mess`, there are two breaking changes that come to mind: 1. The addition of a variant in the [Sep](https://docs.rs/versions/latest/versions/enum.Sep.html) enum. These...

Thanks for the follow-up. I do intend to solve this as soon as I'm able.

Hi there. In this case I'd recommend a preemptive call to https://doc.rust-lang.org/std/primitive.str.html#method.split_once to remove anything past the first whitespace, and then call `Versioning::new`.