Sha256: c01167ab9037a6a57100ba70039e8285849421b4da38690ac6df819ac54ea085
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
module Slideshow module HeadersFilter def leading_headers( content_with_headers ) # todo: read headers before command line options (lets you override options using commandline switch)? # read source document; split off optional header from source # strip leading optional headers (key/value pairs) including optional empty lines read_headers = true content = "" headers = [] # track header keys for stats content_with_headers.each_line do |line| if read_headers && line =~ /^\s*(\w[\w-]*)[ \t]*:[ \t]*(.*)/ key = $1.downcase value = $2.strip headers << key logger.debug " adding option: key=>#{key}< value=>#{value}<" opts.put( key, value ) elsif line =~ /^\s*$/ content << line unless read_headers else read_headers = false content << line end end puts " Reading #{headers.length} headers: #{headers.join(', ')}..." content end end # module HeadersFilter end # module Slideshow class Slideshow::Gen include Slideshow::HeadersFilter end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slideshow-0.9.11 | lib/slideshow/filters/headers_filter.rb |
slideshow-0.9.10 | lib/slideshow/filters/headers_filter.rb |