I've tried every variation I can think of to add the current url path to the href in the facebook comments div. Why doesn't this work?
<div class="fb-comments" data-href="<%= #{request.protocol}#{request.host_with_port}#{request.fullpath} %>" data-width="470" data-num-posts="2"></div>
I've also tried this but the end of the ruby injection code seems to end the div this way:
<div class="fb-comments" data-href=<%= "#{request.protocol}#{request.host_with_port}#{request.fullpath}" %> data-width="470" data-num-posts="2"></div>