/
FerrisMind
/
StriMD
Обзор
Документация
Войти
/
FerrisMind
/
StriMD
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/render/mod.rs
17 строк
351 B
FerrisMind
feat: add CommonMark and GFM specifications, enhance markdown rendering
02 июн 2026, 11:51
02 июн 2026, 11:51
fe42773
Код
Авторство
О чём код?
//! Optional SVG renderers for math (RaTeX) and Mermaid diagrams. pub mod svg_util; #[cfg(feature = "math")] pub mod ratex; #[cfg(feature = "mermaid")] pub mod mermaid; pub use svg_util::SvgArtifact; #[cfg(feature = "math")] pub use ratex::{LatexCache, latex_to_svg}; #[cfg(feature = "mermaid")] pub use mermaid::{MermaidCache, mermaid_to_svg};