method

inline_other_text?

v1_9_1_378 - Show latest stable - Class: RSS::Atom::Feed::Entry::Content
inline_other_text?()
public

No documentation available.

# File lib/rss/atom.rb, line 526
          def inline_other_text?
            return false unless inline_other?
            return false if inline_other_xml?

            media_type, subtype = mime_split
            return true if "text" == media_type.downcase
            false
          end