Add support for the ast entity.
This commit is contained in:
parent
45e16fea2d
commit
3a38f4cd35
@ -45,7 +45,11 @@ fn name<'r, 's>(
|
||||
// TODO: This should be defined by org-entities and optionally org-entities-user
|
||||
|
||||
// TODO: Add the rest of the entities, this is a very incomplete list
|
||||
let (remaining, proto) = alt((alt((tag_no_case("delta"), tag_no_case("pi"))),))(input)?;
|
||||
let (remaining, proto) = alt((alt((
|
||||
tag_no_case("delta"),
|
||||
tag_no_case("pi"),
|
||||
tag_no_case("ast"),
|
||||
)),))(input)?;
|
||||
Ok((remaining, proto))
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user