cmark-translate 0.2.2

Translate CommonMark using DeepL API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod cmark_xml;
mod deepl;
mod glossary;
mod trans;

// re-export
pub use cmark_xml::{
    cmark_from_xml, cmark_from_xmldom, read_cmark_with_frontmatter, xml_from_cmark,
    xmldom_from_cmark,
};
pub use deepl::{Deepl, DeeplGlossary, Formality, Language};
pub use glossary::read_glossary;
pub use trans::{translate_cmark, translate_cmark_file, translate_toml};