#![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, article_from_markup, blocks, citation, embed_block, equation, figure,
markup_from_article, prose, section, table, title,
};
pub use lens::{
ARTICLE_FORMATTED_LENS, ARTICLE_SOURCE_LENS, article_formatted, article_outline,
article_source, export_intermediate, export_markdown, markup_edit_from_intent, with_cache,
};
pub const ARTICLE_LENS: &str = ARTICLE_FORMATTED_LENS;
pub static RECIPES: sim_cookbook::EmbeddedDir =
include!(concat!(env!("OUT_DIR"), "/cookbook_recipes.rs"));
#[cfg(test)]
mod tests;