class Rundown::Processors::Links

Constants

REGEX

Public Instance Methods

process() click to toggle source
# File lib/rundown/processors/links.rb, line 6
def process
  words.select { |word| word.match(REGEX) }.map {|word| strip_punctuation(word) }
end