cmark-translate 0.2.2

Translate CommonMark using DeepL API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT
//!
//! Read glossaries from .xlsx
//!

pub fn read_glossary<P: AsRef<std::path::Path>>(
    xlsx_path: P,
    from: &str,
    to: &str,
) -> Result<Vec<(String, String)>, umya_spreadsheet::reader::xlsx::XlsxError> {
    todo!()
}