//! Shared code for gorbie_commonmark and gorbie_commonmark_macro. Breaking changes will happen and
//! should ideally not be relied upon. Only items that can been seen in this documentation
//! can be safely used directly.
// For ease of use in proc macros
pub use ;
// The only struct that is allowed to use directly. (If one does not need gorbie_commonmark)
pub use CommonMarkCache;
/// Takes [`egui::Ui`], the math text to be rendered and whether it is inline
pub type RenderMathFn = dyn Fn;
/// Takes [`egui::Ui`] and the html text to be rendered/used
pub type RenderHtmlFn = dyn Fn;