From 223c56f8e2d2167edf293f6055ee5e031e3d73c9 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 6 Feb 2012 00:31:05 -0500 Subject: [PATCH] template output function note --- web.d | 1 + 1 file changed, 1 insertion(+) diff --git a/web.d b/web.d index 9cafa59..ec088a5 100644 --- a/web.d +++ b/web.d @@ -2675,6 +2675,7 @@ void applyTemplateToElement(Element e, in string[string] vars, in string delegat // this thing sucks a little less now. // set useHtml to false if you're working on internal data (such as TextNode.contents, or attribute); // it should only be set to true if you're doing input that has already been ran through toString or something. +// NOTE: I'm probably going to change the pipe function thing a bit more, but I'm basically happy with it now. string htmlTemplateWithData(in string text, in string[string] vars, in string delegate(string, string[], in Element, string)[string] pipeFunctions, bool useHtml) { if(text is null) return null;