wearte_helpers 0.0.1

Helper collection for wearte
Documentation
1
2
3
4
5
6
7
8
9
10
cfg_if! {
    if #[cfg(wearte_nightly)] {
        #[path = "markup-night.rs"]
        mod markup;
        pub use markup::MarkupAsStr;
    } else {
        mod markup;
        pub use markup::MarkupAsStr;
    }
}