diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-21 18:09:24 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-21 18:09:24 +0200 |
commit | f5bb9ab57b9153775a9ffca7322173ec424d4669 (patch) | |
tree | 5364784b9634e5debc6cd43e7e72c97f822d8211 /src/construct/partial_destination.rs | |
parent | d1063268e62633a334bb9464f7cba2385da5812d (diff) | |
download | markdown-rs-f5bb9ab57b9153775a9ffca7322173ec424d4669.tar.gz markdown-rs-f5bb9ab57b9153775a9ffca7322173ec424d4669.tar.bz2 markdown-rs-f5bb9ab57b9153775a9ffca7322173ec424d4669.zip |
Add support for capping destination (raw) balance
Diffstat (limited to 'src/construct/partial_destination.rs')
-rw-r--r-- | src/construct/partial_destination.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/construct/partial_destination.rs b/src/construct/partial_destination.rs index 823ce99..b2ceeb8 100644 --- a/src/construct/partial_destination.rs +++ b/src/construct/partial_destination.rs @@ -57,6 +57,8 @@ pub struct Options { pub raw: TokenType, /// Token for a the string. pub string: TokenType, + /// Maximum unbalanced parens. + pub limit: usize, } /// State needed to parse destination. @@ -176,12 +178,9 @@ fn enclosed_escape(tokenizer: &mut Tokenizer, code: Code, info: Info) -> StateFn /// a|b /// ``` fn raw(tokenizer: &mut Tokenizer, code: Code, mut info: Info) -> StateFnResult { - // To do: configurable. - let limit = usize::MAX; - match code { Code::Char('(') => { - if info.balance >= limit { + if info.balance >= info.options.limit { (State::Nok, None) } else { tokenizer.consume(code); |