Tom Kunc
Tom Kunc
Thank you for the feedback! I'll fix those nits up. Did you have any broader feedback on the structure I'm planning in SUMMARY.md? And if I kept working on this...
@Xiretza + @Geal -- I've updated this PR with the next section of the book. Particularly curious if there's anything major that needs changing in the order or in topics...
I'll look into it further; especially if anyone ends up using `mdbook-keeper` and I can justify putting more effort into it.
@ehuss @mgeisler -- posting here since I already posted in #706, I've now got an MVP of a crate that solves this issue. Would really appreciate feedback -- if it's...
I'm just wondering if anyone has taken this on and made a mdBook extension as was suggested here? I'm working on a book for nom, and becoming frustrated with the...
After looking into this, I think what makes sense is to write a preprocessor, which: - Uses rust-skeptic to extract the test cases. - Runs the test cases for code...
Good news! v0.1.0 of my proposed crate has now been published, as [mdbook-keeper](https://crates.io/crates/mdbook-keeper). At the moment, it is an MVP. It: - Runs all tests, every time the project is...
That's great to know! Hope it works out for you, and feel free to let me know if there are any issues :)
Hey! So there are actually a couple things going on here, apologies if this is unstructured; and also apologies if I over-explain things (if nothing else, hopefully I can point...
Sorry to pile on the confusion, let's try get it straightened out... 1. The reason for this is because calling `drop(my_variable)` (where `my_variable` is `Copy`) is identical to `drop(my_variable.clone())`. That's...