ratex-parser 0.1.1

LaTeX parser for RaTeX
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashMap;

use crate::functions::FunctionSpec;

pub fn register(_map: &mut HashMap<&'static str, FunctionSpec>) {
    // \verb is handled directly in Parser::parse_symbol_inner
    // because it has special lexing requirements.
}