mlang-rs 0.2.5

scheme definition language for markup languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `mlang` is a document type definition language, originally developed for the contruction of `vglang`.

#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(feature = "lang")]
#[cfg_attr(docsrs, doc(cfg(feature = "lang")))]
pub mod lang;

#[cfg(feature = "rt")]
#[cfg_attr(docsrs, doc(cfg(feature = "rt")))]
pub mod rt;