#![forbid(unsafe_code)]
#![deny(missing_docs)]
mod citizen;
pub mod doc;
pub mod lens;
pub use citizen::{DocArticleDescriptor, doc_article_class_symbol};
pub use doc::{
ARTICLE_CLASS, article, blocks, citation, embed_block, equation, figure, prose, section, table,
title,
};
pub use lens::{
ARTICLE_FORMATTED_LENS, ARTICLE_SOURCE_LENS, article_formatted, article_outline,
article_source, export_intermediate, export_markdown, with_cache,
};
pub const ARTICLE_LENS: &str = ARTICLE_FORMATTED_LENS;
#[cfg(test)]
mod tests;