Create structure for inline source blocks.

This commit is contained in:
Tom Alexander
2023-07-21 22:29:04 -04:00
parent b323a407c4
commit e0d2bb8213
6 changed files with 69 additions and 2 deletions

View File

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