@etctimon

my stringTemplats work like this :
somewhere in your diet template there is an a line "include #{this_string}"
now if you render this template normally you will get
#{thisstring}.dt could not be found
or something like that. If you use my stringIncludeRender like this:

stringIncludeRender!("real_template_on_disc.dt",some_array,other_stuff,this_string);

the line include #{thisstring} in your template will be replaced by the string thisstring.
this
string has to be (or rather contain) valid diet-template syntax.
thisstring will be parsed before the realtemplateondisc.dt!

makeing sure that this_string contains valid code is your responsebility.
please use it and report any bug you find :D