inline_other_text?()
public
Returns true if the element contains inline content that has a text media
type.
Show source
def inline_other_text?
return false unless inline_other?
return false if inline_other_xml?
media_type, = mime_split
return true if "text" == media_type.downcase
false
end