Because I don't want any of my lines to be wider than 80 columns, I want to split the last line into two lines. Adding a comma at the end of the line works as suggested here but then the comma appears inside the string. Is there a nice and clean way of doing this with HAML?
- if object.errors.any?
%section.form_error_message
%h4.form_error_message__title
= "#{pluralize(object.errors.size, 'errors')} prevented this form from submitting. Please fix these errors and try again."
I want it all to be tucked inside 80 columns like they are on the left of this screenshot.