inline_other?()
public
Returns true if the element contains inline content that has a MIME media
type.
Show source
def inline_other?
return false if out_of_line?
media_type, subtype = mime_split
return false if media_type.nil? or subtype.nil?
true
end