Add support for math-like externals (#4606)

This commit is contained in:
JT
2022-02-22 10:55:28 -05:00
committed by GitHub
parent d054a724d1
commit 25712760ba
7 changed files with 63 additions and 4 deletions

View File

@ -13,7 +13,9 @@ pub use known_external::KnownExternal;
pub use lex::{lex, Token, TokenContents};
pub use lite_parse::{lite_parse, LiteBlock};
pub use parser::{parse, parse_block, parse_external_call, trim_quotes, Import};
pub use parser::{
is_math_expression_like, parse, parse_block, parse_external_call, trim_quotes, Import,
};
#[cfg(feature = "plugin")]
pub use parse_keywords::parse_register;