This isn't supported. However, you could override the partial
resolution method by setting a custom superclass and implement
something like what you describe but you'd end up with a pretty non-
standard implementation. You might instead use regular replacement and
use another MustacheBuilder to create the content, something like:
Mustache:
{{foobar}}
Backing code:
public FutureWriter foobar() {
// Use mustache builder API to grab the partial you need
return the furture writer;
}
Sam
On Jul 20, 3:19 am, Matthieu Legras <
matthieu.leg...@spotuse.com>
wrote: