Skip to content

Commit e073352

Browse files
committed
fmt
1 parent 38dbde4 commit e073352

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/template_helpers.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ pub fn register_all_helpers(h: &mut Handlebars<'_>, config: &AppConfig) {
4848
other => json_eq_case_insensitive(other, element),
4949
}
5050
});
51-
h.register_helper("array_contains_case_insensitive", Box::new(array_contains_case_insensitive));
51+
h.register_helper(
52+
"array_contains_case_insensitive",
53+
Box::new(array_contains_case_insensitive),
54+
);
5255

5356
// static_path helper: generate a path to a static file. Replaces sqpage.js by sqlpage.<hash>.js
5457
register_helper(h, "static_path", StaticPathHelper(site_prefix.clone()));

0 commit comments

Comments
 (0)