This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Description
Starting up an issue, so we can discuss implementation, as I've been thinking about this a lot.
The issue with converting mustache is that what sections and variables do at runtime differ depending on what the variable is at runtime.
So the way I see this working is that each {{#section}} would need to be converted to a function (probably one that allowed for output to make life super easy). That way you could do type checking at run time to determine what the type of the object is, and then react accordingly.
You would need to store the inner parts of the original mustache template, so it can be passed to lamda's as well.
Anyone see any major issues with that sort of implementation?