Ray Morgan
Ray Morgan
Because partials can be recursive, you cannot expand the partial tags at compile time in Mustache. What Mu does is compile all the needed partials at compile time and references...
Actually, it should just be printing nothing when it encounters that tag. I will look into this.
Mustache tags are suppose to render blank if their value is not defined. I would be open to having a way to override this behavior, but the default needs to...
The "." is not part of the mustache spec. It breaks the idea of logic-less, since now your templates have to know that you are dealing with an array of...
Mustache is suppose to make your templates logic free (not make your life necessarily easier right away), which in turn sometimes means there is more upfront work. This is what...
Sounds good. As a note here is how I would implement the stylesheet thing you mentioned. Although it is more work, it is easy and very flexible. ``` { styles:...
I am not sure I want to expose a non-streaming API. I do have an express engine wrapper around Twitter's Mustache (non-streaming) Hogan here: https://github.com/raycmorgan/hogan-engine I use that one when...