diff options
| -rw-r--r-- | src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index 141aa7d..404bb15 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -95,7 +95,7 @@ pub fn parse_with_limits(chars: &Vec<char>, start: usize, end: usize, depth: usi styles.append(&mut parse_with_limits(chars, index + 1, to - 1, depth)); } } - index = to; + index = to + 1; } None => () } |
