mirror of
https://github.com/kennethreitz-archive/wp-mustache.git
synced 2026-06-05 07:36:14 +00:00
master
general update. mustache.php at http://github.com/bobthecow/mustache.php/commit/d5de2d4af79f7560ff57bdeeaa7d62e66500582a
general update. mustache.php at http://github.com/bobthecow/mustache.php/commit/d5de2d4af79f7560ff57bdeeaa7d62e66500582a
Mustache.php for WordPress
Mustache.php by Justin Hileman is a Mustache implementation in PHP.
WordPress adaption by Kenneth Reitz.
Usage
A quick example:
<?php
include('Mustache.php');
$m = new Mustache;
echo $m->render('Hello {{planet}}', array('planet' => 'World!'));
// Renders: "Hello World!"
See Also
- Readme for the Ruby Mustache implementation.
- mustache(1) and mustache(5) man pages.
Description
Languages
PHP
94.9%
Mustache
5.1%