Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Difference between -%> and %> in rails

I need to know what is the difference between <%= expression %> and <%= expression -%> on rails, please help me to make good foundation on Ruby On Rails

share|improve this question

marked as duplicate by marc_s, StriplingWarrior, Ken White, Ben Blank, Neil Knight Jul 8 '11 at 21:14

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 12 down vote accepted

The '-%>' means, that no linebreak will be appended to the output of the expression. It's usefull if you want to control the amount of whitespace you have in the generated HTML but do not want to put all the code in a single line.

share|improve this answer
Thanks friend this answer will be useful for me – Senthil Kumar Bhaskaran Oct 14 '09 at 7:13
2  
In that case, it's good form to mark this answer as "Accepted" so the answerer gets the credit for it. – SFEley Oct 14 '09 at 14:06

I say don't bother with '-%>' If you are using layouts and partials with your views it is difficult control the output anyway, things like indentation will likely be messed up. Just focus making your ERb look good and don't worry too much what the generated output looks like.

share|improve this answer
thanks for ur comments – Senthil Kumar Bhaskaran Oct 14 '09 at 9:18

As mentioned before, the -%> is used to control output whitespace. I you're at all concerned with how your HTML looks, use HAML. HAML is way more clear and readable when coding and it generates clear, valid formatted HTML. No more forgotten close tags!

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.