Code structure for latex environment.

This commit is contained in:
Tom Alexander
2023-04-22 16:56:36 -04:00
parent 185f16d2cc
commit 4816a5dfc4
6 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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!()
}