Skip to content

Tags: evdevgit/mustache.php

Tags

v2.9.0

Toggle v2.9.0's commit message
 * Lazily evaluate template BLOCKS pragma sections. See bobthecow#264 …

…and bobthecow#265. Thanks @damyon!

 * Add ANCHORED-DOT pragma to enable "anchored dot notation". See bobthecow#129 and mustache/spec#52
 * A bit of CS cleanup, and remove the unused create_example script.

v2.8.0

Toggle v2.8.0's commit message
 * Tons of CS fixes. Thanks @keradus!

 * Fix for extra indent inside template inheritance sections.

v2.7.0

Toggle v2.7.0's commit message
 * Add template inheritance, via BLOCKS pragma. Thanks @jazzdan and t…

…he rest of the @etsy devs!

 * Add a `pragmas` option to the Mustache_Engine constructor for enabling default pragmas.
 * A couple of performance improvements. Thanks @nizsheanez!
 * Code cleanup. Thanks @keradus!
 * Check coding standards on CI. Thanks @keradus!
 * Fix whitespace bug in nested partials. Thanks for the bug report, @mikesherov and @behance!
 * Allow omitting the filters on closing section tags, for example, `{{# a | b }}{{/ a }}` is now valid.
 * Increase test coverage, improve comments and examples.

2.6.1

Toggle 2.6.1's commit message
Merge branch 'release/2.6.1'

v2.6.1

Toggle v2.6.1's commit message
 * Code cleanup (thanks @keradus!)

 * Fix parse error with mismatched triple-mustache delimiters (thanks @smarden1!)

v2.6.0

Toggle v2.6.0's commit message
Lots of little changes, plus two bigger ones:

 * Fix disabling lambda template cache option: it didn't before, now it does.
 * Improve tokenizer performance: 25-60% performance boost!

v2.5.1

Toggle v2.5.1's commit message
Fix a tokenization error with sections containing only the number zero.

Yay PHP!

v2.5.0

Toggle v2.5.0's commit message
 * Add section filter support

 * Add more flexible cache options
 * A nested partials whitespace bugfix
 * Add ArrayAccess context lookup support
 * Some lambda section optimizations and smarter cache defaults

1.0.0

Toggle 1.0.0's commit message
Merge branch 'release/2.4.1'

v2.4.1

Toggle v2.4.1's commit message
Mustache.php v2.4.1

 * Fix autoloader for paths starting with `./` (thanks @mirkolofio!)
 * Allow stream URIs in Filesystem Loader (thanks @mlebrun!)
 * Fix bonus indents in lambda sections inside indented partials