1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! A helper crate for testing Rust code blocks in Markdown.

#![doc(html_root_url = "https://docs.rs/doubter/0.0.3")]

#[macro_use]
extern crate proc_macro_hack;

#[allow(unused_imports)]
#[macro_use]
extern crate doubter_impl;
#[doc(hidden)]
pub use doubter_impl::*;

proc_macro_item_decl! {
    doubter! => doubter_impl
}