Testing code blocks in the README
via github.com/artichoke/intaglio
#![allow(unused)] fn main() { // Ensure code blocks in README.md compile #[cfg(doctest)] macro_rules! readme { ($x:expr) => { #[doc = $x] mod readme {} }; () => { readme!(include_str!("../README.md")); }; } #[cfg(doctest)] readme!(); }