/ Published in: Ruby
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# Borramos los párrafos en blanco text.gsub!(/<p(.)*>(\s)*(<br(\s)*(\/)*>)*(\s)*( )*<\/p>/) { |match| match = ""} # Luego borramos los divs que se hayan quedado vacÃos text.gsub!(/<div(.)*>(\s)*(<br(\s)*(\/)*>)*(\s)*( )*<\/div>/) { |match| match = ""} # Y terminamos borrando todo lo que sobra entre etiquetas text.gsub!(/>(\s)*(<br(\s)*(\/)*>)*(\s)*( )*</) { |match| match = ">\n<"}
URL: http://gist.github.com/151875