diff options
Diffstat (limited to '')
| -rw-r--r-- | askama_derive/src/parser.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/askama_derive/src/parser.rs b/askama_derive/src/parser.rs index 491a5d7..8732f0e 100644 --- a/askama_derive/src/parser.rs +++ b/askama_derive/src/parser.rs @@ -358,6 +358,7 @@ named!(block_block<Node>, do_parse!(      tag_s!("{%") >>      pws2: opt!(tag_s!("-")) >>      ws!(tag_s!("endblock")) >> +    opt!(ws!(tag_s!(name))) >>      nws2: opt!(tag_s!("-")) >>      (Node::BlockDef(WS(pws1.is_some(), nws1.is_some()),                      name, contents,  | 
