template output function note

This commit is contained in:
Adam D. Ruppe 2012-02-06 00:31:05 -05:00
parent ac83e27d21
commit 223c56f8e2
1 changed files with 1 additions and 0 deletions

1
web.d
View File

@ -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;