polarblau / meta_wordpress

Use your favorite meta languages such as Haml, Sass and Coffeescript to bootstrap and build Wordpress themes.
MIT License
9 stars 1 forks source link

Prevent line wrap when passing string to content_for #25

Open polarblau opened 11 years ago

polarblau commented 11 years ago

Fix Haml helper (Ruby):

<?php content_for('header_image_class', function() { ?>
no-header-image
<?php }) ?>

should be

<?php content_for('header_image_class', function() { ?>no-header-image<?php }) ?>

to prevent problems with e.g. class names.