aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar vallentin <mail@vallentin.dev>2020-12-18 12:33:24 +0100
committerLibravatar Christian Vallentin <vallentinsource@gmail.com>2020-12-18 15:05:26 +0100
commit677c03b133515e0c252c75513e550c2c7836e90c (patch)
tree30e540ed77ab782cd46c1b70967f34f691bc59d7 /askama_shared
parent8fa66ea0f7b6f2d33a7bc0437c7527fd9e0c2c94 (diff)
downloadaskama-677c03b133515e0c252c75513e550c2c7836e90c.tar.gz
askama-677c03b133515e0c252c75513e550c2c7836e90c.tar.bz2
askama-677c03b133515e0c252c75513e550c2c7836e90c.zip
Added support for nested comments
Diffstat (limited to 'askama_shared')
-rw-r--r--askama_shared/src/parser.rs26
1 files changed, 22 insertions, 4 deletions
diff --git a/askama_shared/src/parser.rs b/askama_shared/src/parser.rs
index a03952d..ba5ea0c 100644
--- a/askama_shared/src/parser.rs
+++ b/askama_shared/src/parser.rs
@@ -2,7 +2,7 @@ use nom::branch::alt;
use nom::bytes::complete::{escaped, is_not, tag, take_until};
use nom::character::complete::{anychar, char, digit1};
use nom::combinator::{complete, map, opt, value};
-use nom::error::ParseError;
+use nom::error::{Error, ParseError};
use nom::multi::{many0, many1, separated_list0, separated_list1};
use nom::sequence::{delimited, pair, tuple};
use nom::{self, error_position, Compare, IResult, InputTake};
@@ -1007,19 +1007,37 @@ fn block_node<'a>(i: &'a [u8], s: &'a Syntax<'a>) -> IResult<&'a [u8], Node<'a>>
Ok((i, contents))
}
+fn block_comment_body<'a>(mut i: &'a [u8], s: &'a Syntax<'a>) -> IResult<&'a [u8], &'a [u8]> {
+ let mut level = 0;
+ loop {
+ let (end, tail) = take_until(s.comment_end)(i)?;
+ match take_until::<_, _, Error<_>>(s.comment_start)(i) {
+ Ok((start, _)) if start.as_ptr() < end.as_ptr() => {
+ level += 1;
+ i = &start[2..];
+ }
+ _ if level > 0 => {
+ level -= 1;
+ i = &end[2..];
+ }
+ _ => return Ok((end, tail)),
+ }
+ }
+}
+
fn block_comment<'a>(i: &'a [u8], s: &'a Syntax<'a>) -> IResult<&'a [u8], Node<'a>> {
let mut p = tuple((
|i| tag_comment_start(i, s),
opt(tag("-")),
- take_until(s.comment_end),
+ |i| block_comment_body(i, s),
|i| tag_comment_end(i, s),
));
- let (i, (_, pws, inner, _)) = p(i)?;
+ let (i, (_, pws, tail, _)) = p(i)?;
Ok((
i,
Node::Comment(WS(
pws.is_some(),
- inner.len() > 1 && inner[inner.len() - 1] == b'-',
+ tail.len() > 1 && tail[tail.len() - 1] == b'-',
)),
))
}