A bit more chaining cleanup

This commit is contained in:
Gregory Schier
2024-08-19 16:38:28 -07:00
parent 96125a0741
commit dbfe2dc93d
16 changed files with 173 additions and 51 deletions

View File

@@ -50,6 +50,7 @@ async fn render_tag<T: TemplateCallback>(
Some(v) => v.to_string(),
None => "".into(),
},
Val::Bool { value } => value.to_string(),
Val::Fn { name, args } => {
let empty = "".to_string();
let mut resolved_args: HashMap<String, String> = HashMap::new();