I am trying to delete all in my model with the following method:
def about_us_sans_spaces self.about_us = replace(self.about_us, " ", " ") end
Besides! it turns out that "replacement" is not a method in rails. How to remove ?
Remember, I already tried to sanitize, simple_format. My view is as follows:
= truncate(sanitize(simple_format(organization.about_us_sans_spaces), :tags => ''), 125).titleize
source share