25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

README.md 582B

16 yıl önce
123456789101112131415161718192021222324252627282930
  1. # mustache.js
  2. > What could be more logical awesome than no logic at all?
  3. Shamless port of http://github.com/defunkt/mustache
  4. by Jan Lehnardt <jan@apache.org>.
  5. Thanks @defunkt for the awesome code.
  6. ## Usage
  7. // load mustache.js
  8. var view = {
  9. title: "foo",
  10. calc: function() {
  11. return 2 + 4;
  12. }
  13. }
  14. var template = "{{title}} spends {{calc}}";
  15. var html = Mustache.to_html(template, view);
  16. // whatever you want to do with html
  17. See `examples/` for more goodies and read the [original mustache docs][m]
  18. [m]: http://github.com/defunkt/mustache/