Michael Howell

Results 244 comments of Michael Howell

About this example: ```rust let mut foo = 22; unsafe { // dtor joins the thread let _guard = thread::spawn(|foo| { loop { // in other thread: continuously read from...

> May this fuzzer provide help to catch errors in CommonMark+GFM? That's what I'm thinking, yeah. Pandoc lets you select your extensions, such as `commonmark+footnotes` or `commonmark+task_lists`.

@jgm other than the merge conflict in regression.md (a simple rebase), is there anything blocking this fix?

Do the new comments and variable names help?

I don't see how your approach is any better than just cutting in half, especially if the bad PR winds up in back. As for the priorities, it doesn't have...

That would require homu to be a contributor on every fork of the master repo.

The simplest way to fix this, without changing anything else, would be to modify `toc.js.hbs`: https://github.com/rust-lang/mdBook/blob/d1078434af80b16cd75166e45812d95fbeb46643/src/theme/toc.js.hbs#L11 If you insert your `` before the `{{#toc}}` placeholder, it will appear at the...

Instead of implicitly adding a bunch of new tags when switching mode, perhaps add a new constructor method that creates a builder with the flag turned on? Like this? ```rust...