Call the text markup parser.

This commit is contained in:
Tom Alexander
2023-04-22 18:54:19 -04:00
parent 99645ea14c
commit 538031c688
3 changed files with 28 additions and 6 deletions

11
src/parser/text_markup.rs Normal file
View File

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