sparkartgroup / handlebars-helper

A collection of Handlebars Helpers for use with Solidus
MIT License
39 stars 9 forks source link

Add `replace` helper #6

Closed Fauntleroy closed 11 years ago

Fauntleroy commented 11 years ago

The replace helper should provide basic string replacement functionality. Users should be able to provide a string to replace and a replacement.

url

http://sparkart.com/images/cats.jpg

Handlebars

<!-- Replace helper with arguments: sparkart.com cdn.sparkart.com -->
<img src="{{#replace url sparkart.com cdn.sparkart.com}}" />

Output

<!-- Replace helper with arguments: sparkart.com cdn.sparkart.com -->
<img src="http://cdn.sparkart.com/images/cats.jpg" />
Fauntleroy commented 11 years ago

@pushred is this sufficient for your CDN url replacement use case?

pushred commented 11 years ago

That'll do it!