Sha256: 5de4c54784f6a90eacf4e3eb66654856d7cf2d7cdfc0e367cb6935fa21f062d4

Contents?: true

Size: 924 Bytes

Versions: 1

Compression:

Stored size: 924 Bytes

Contents

module Jkl
  module Text
    class << self

      def plain_text(document, words_on_line = 5)
        remove_short_lines(strip_all_tags(remove_script_tags(document)), words_on_line)
      end

      def strip_all_tags(text)
        text.gsub(/<\/?[^>]*>/, "")
      end

      def remove_blank_lines(text)
        text.gsub(/\n\r|\r\n|\n|\r/, "")
      end

      def remove_html_comments(text)
        text.gsub(/<!--(.|\s)*?-->/, "")
      end

      def remove_script_tags(text)
        text = remove_html_comments(text)
        text.gsub(/((<[\s\/]*script\b[^>]*>)([^>]*)(<\/script>))/i, "")
      end

      def remove_short_lines(text, words_on_line = 5)
        text = text.gsub(/\s\s/, "\n")
        str = ""
        # remove short lines - ususally just navigation
        text.split("\n").each do |l|
          str << l unless l.count(" ") < words_on_line
        end
        str
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jakal-0.2.0 lib/jkl/text_client.rb