Chris Wong
Chris Wong
Thanks for writing up the autoref specialization guide! There's a similar technique which depends on Rust favoring inherent impls over traits. Taking the `DisplayToString` example: ```rust use std::fmt::{Display, Write}; pub...
When rust-lang/rust#57532 lands in stable, we won't need to lower multiple patterns to `match` anymore. We may also want to support leading `|`, as mentioned in the RFC.
This ensures forward compatibility with the 2021 edition, but is [only supported in Rust ≥ 1.53](https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1530-2021-06-17).
Closes #270
Follow-up to #271. I see there are many use cases like `bytesize` and `chrono` that would benefit from this.
Now that we're getting a handful of PRs adding these, I think it would be good to define which web frameworks should and shouldn't be integrated into Maud.
The current `PreEscaped` API has a few issues: - The `PreEscaped` / `Markup` naming was lifted from [`blaze-markup`](https://hackage.haskell.org/package/blaze-markup), which supports both HTML and XML. But Maud was always HTML-only, and...
#328 could have been prevented if we built the library on stable as well. cc @malyn