organic/src/parser/latex_environment.rs

12 lines
266 B
Rust
Raw Normal View History

2023-04-22 16:56:36 -04:00
use super::Context;
use crate::error::Res;
use crate::parser::LatexEnvironment;
#[tracing::instrument(ret, level = "debug")]
pub fn latex_environment<'r, 's>(
context: Context<'r, 's>,
input: &'s str,
) -> Res<&'s str, LatexEnvironment<'s>> {
todo!()
}