I don't take credit for the regexp. The source for it is Mastering Regular Expressions by Jeffrey E.F. Frield.
```ruby
def remove_html_tags
re = /<("[^"]*"|'[^']*'|[^'">])*>/
self.title.gsub!(re, '')
self.description.gsub!(re, '')
end
```