pub mod bibliography;
pub mod citation;
pub mod component;
pub mod djot;
pub mod format;
pub mod html;
pub mod latex;
pub mod org;
pub mod plain;
pub mod rich_text;
pub mod typst;
#[cfg(test)]
#[allow(
clippy::unwrap_used,
clippy::expect_used,
clippy::panic,
clippy::indexing_slicing,
clippy::todo,
clippy::unimplemented,
clippy::unreachable,
clippy::get_unwrap,
reason = "Panicking is acceptable and often desired in tests."
)]
mod test_formats;
pub use bibliography::{refs_to_string, refs_to_string_with_format};
pub use citation::{citation_to_string, citation_to_string_with_format};
pub use component::{
ProcEntry, ProcTemplate, ProcTemplateComponent, render_component,
render_component_with_format_and_renderer,
};
pub use rich_text::render_djot_inline;