cmark_translate/
lib.rs

1mod cmark_xml;
2mod deepl;
3mod glossary;
4mod trans;
5
6// re-export
7pub use cmark_xml::{
8    cmark_from_xml, cmark_from_xmldom, read_cmark_with_frontmatter, xml_from_cmark,
9    xmldom_from_cmark,
10};
11pub use deepl::{Deepl, DeeplGlossary, Formality, Language};
12pub use glossary::read_glossary;
13pub use trans::{translate_cmark, translate_cmark_file, translate_toml};