Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

There are such thing as Mustache. I'm using NetBeans and I need to edit .mustache files. The problem is that when I open it using NetBeans, syntax is just like for plain text.

1) Is it possible to have HTML-like syntax for .mustache files?

2) Is there any plugin that allows to work easier with Mustache? I have found only this tutorial.

share|improve this question

2 Answers

up vote 1 down vote accepted

It seemes that the way described at the link you've posted is only way: write your own plugin for netbeans (it's quite difficult task)

1) Follow http://wiki.netbeans.org/SyntaxColoringANTLR

2) But the more difficult thing is to implement your language definition as an embedded one.

It's needed if you want to highlight mustache template tags inside other language files (html, xhtml)

In older versions of NetBeans was a really simple api and module (it cannot be itegrated with all the platform services, like refactoring and so on) but it was based on grammar definition (BNF or something like that) and color scheme for tokens.

share|improve this answer

If creating your own plugin is to hard, you might be already content if mustache templates are displayed as (normal) HTML instead of plain text.

This can be configured in Options > Miscellaneous > Files. Create a 'New' file extension named 'mustache'. Than select 'HTML Files (text/html)' as associated file type.

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.