handlebars 6.4.4

Handlebars templating implemented in Rust.
Documentation
use handlebars::Handlebars;
use handlebars::testing::TestHandlebars;

#[test]
fn test_inline_scope() {
    let mut hbs = Handlebars::new();
    hbs.register_partial(
        "test_partial",
        r#"{{#>nested_partial}}Inner Content{{/nested_partial}}"#,
    )
    .unwrap();
    hbs.assert_render_template(
        r#"{{>test_partial}}

{{#>test_partial}}
{{#*inline "nested_partial"}}Overwrite{{/inline}}
{{/test_partial}}

{{>test_partial}}"#,
        &(),
        "Inner Content\nOverwrite\nInner Content",
    );
}