Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use mustache with node, but for some reason partials won't work: I've created 2 files, app.js and test.mustache, both in the same directory. Using a package.json file and npm I've installed the latest version of mustache for this project. The files look like this:

app.js:

var mus = require('mustache');
console.log(mus.render('test.mustache: {{>test}}'));

test.mustache:

This is a test

If I run node app.js I expect to get the following output: test.mustache: This is a test, but instead I just get: test.mustache:.

Other mustache tags do work as expected, and even the vows test of mustache doesn't report any errors.

What should I do to get this to work correctly?

share|improve this question
Try putting a space after the > – murgatroid99 Aug 13 '12 at 14:04
@murgatroid99 - I've already tried that, but it doesn't work. – Tiddo Aug 13 '12 at 14:11

2 Answers

up vote 3 down vote accepted

Using node-inspector I've debugged the above application with Mustache. It turns out that Mustache doesn't automatically include the partial files, in contrary to what the manual implies (scroll down to partials). Instead you'll always need to provide the partials manually as the third argument to the render method.

share|improve this answer
The document you're looking at is the Mustache spec; different implementations work slightly differently, depending on what makes sense for that environment. In this case, the documentation for this implementation says, "In mustache.js an object of partials may be passed as the third argument to Mustache.render. The object should be keyed by the name of the partial, and its value should be the partial text." – Brandon Tilley Aug 13 '12 at 16:25
1  
@BrandonTilley - I've seen that documentation as well, however the above part of that documentation is exactly the same as the Mustache spec, and it's says may, not should. Therefore I thought that it just followed the specs, but if you supplied the partial argument it uses that instead of a new file. So the documentation is a little unclear about this. – Tiddo Aug 13 '12 at 22:59

FYI, this version of Consolidate.js supports partials: https://github.com/simov/consolidate.js

Consolidate makes it easy to use many templating engines inside Express.js

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.