Create structure for inline babel calls.

This commit is contained in:
Tom Alexander
2023-07-21 19:53:02 -04:00
parent 1e2ea17a9c
commit eef2944307
5 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
use super::Context;
use crate::error::Res;
use crate::parser::util::not_yet_implemented;
use crate::parser::InlineBabelCall;
#[tracing::instrument(ret, level = "debug")]
pub fn inline_babel_call<'r, 's>(
context: Context<'r, 's>,
input: &'s str,
) -> Res<&'s str, InlineBabelCall<'s>> {
not_yet_implemented()?;
todo!()
}