use new object from dom.d, breaking change - change your string[string] to AttributesHolder too

This commit is contained in:
Adam D. Ruppe 2024-09-23 21:33:17 -04:00
parent 2f457a1dbe
commit 21eec2bc9b
1 changed files with 2 additions and 2 deletions

View File

@ -128,12 +128,12 @@ public import arsd.jsvar : var;
+/
class WebTemplateRenderer {
private TemplateLoader loader;
private EmbeddedTagResult function(string content, string[string] attributes)[string] embeddedTagTranslators;
private EmbeddedTagResult function(string content, AttributesHolder attributes)[string] embeddedTagTranslators;
/++
+/
this(TemplateLoader loader = null, EmbeddedTagResult function(string content, string[string] attributes)[string] embeddedTagTranslators = null) {
this(TemplateLoader loader = null, EmbeddedTagResult function(string content, AttributesHolder attributes)[string] embeddedTagTranslators = null) {
if(loader is null)
loader = TemplateLoader.forDirectory("templates/");
this.loader = loader;