Skip to main content

orbital_markdown/
lib.rs

1//! Shared markdown → HTML rendering with citation refs and image support.
2
3mod citation_style;
4mod citations;
5mod links;
6mod mention_style;
7mod mentions;
8mod options;
9mod render_html;
10mod sanitize;
11
12pub use citation_style::CitationLinkStyle;
13pub use citations::CitationRef;
14pub use links::{style_markdown_links, ORBITAL_LINK_INLINE_CLASS};
15pub use mention_style::MentionLinkStyle;
16pub use mentions::MentionRef;
17pub use options::OrbitalMarkdownOptions;
18pub use render_html::{render_to_html, RenderContext};