mdccc 0.1.1

Markdown Compiler-Compiler-Compiler
Documentation
//! Escaping text for use inside LaTeX.

use std::borrow::Cow;

/// LaTeX-escapes arbitrary text. TODO(H2CO3): implement me
pub fn latex(text: Cow<str>) -> Cow<str> {
    text
}