Chris Wong
Chris Wong
The `?` was made optional in #238. Let's drop it altogether. To be precise: we'll still parse it, but emit an error to force its removal. See #315 for a...
For historical reasons, Maud doesn't have good test coverage for its diagnostics. In fact, at the moment there is [only one such test](https://github.com/lambda-fairy/maud/tree/4cffcd298b18c06b4dcff7d96f3a13d2fa026187/maud/tests/warnings) :pensive: The lack of tests will block...
Follow-up to #208. This code: ```rust html! { div.col-sm-2 {} } ``` leads to this error: ``` error: literal must be double-quoted: `"2"` --> $DIR/non-string-literal.rs:15:20 | 15 | div.col-sm-2 {}...
This was removed in #207 as it's not supported on stable. But it should be possible to add it back for nightly only. From [this comment](https://github.com/lambda-fairy/maud/pull/207#issuecomment-687973158): > I'll repurpose `note...
https://prettier.io/docs/en/install.html ``` npx prettier --check . ``` or https://pypi.org/project/mdformat/
Named function expressions have some [strange behavior](https://kangax.github.io/nfe/#jscript-bugs) in older browsers, especially IE 8. It would be nice if we could document these quirks in the compatibility table.
The `.collect()` instance for `Result` and `Option` is pretty useful, but is often overlooked by newcomers. I'd like to see an article that describes it.
See the [`HashMap` docs](https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.entry).
The `Size` type can implement [`Divisible`](https://hackage.haskell.org/package/contravariant-1.4/docs/Data-Functor-Contravariant-Divisible.html): ```haskell instance Divisible Size where divide f = combineSizeWith (fst . f) (snd . f) conquer = ConstSize 0 ``` I think it can...