This mixin allows our markup objects (like RDiscount or RedCloth) to have all the normal string methods that are available.
# File lib/acts_as_markup/stringlike.rb, line 4 def method_missing(method, *params) self.to_s.send(method, *params) end