Create structure for org macros.

This commit is contained in:
Tom Alexander
2023-07-13 23:26:51 -04:00
parent c0371ff958
commit d24c26de7b
5 changed files with 60 additions and 5 deletions

10
src/parser/org_macro.rs Normal file
View File

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