strip_links(html)
Instance Public methods
Strips all link tags from text
leaving just the link text.
1 2 3 4 5 6 7 8 | # => Ruby on Rails strip_links( 'Please e-mail me at <a href="mailto:me@email.com">me@email.com</a>.' ) # => Please e-mail me at me@email.com. # => Blog: Visit. |
Please login to continue.