module Linkous
Constants
- LINK_REGEX
- VERSION
Public Class Methods
convert_links(text)
click to toggle source
# File lib/linkous.rb, line 7 def self.convert_links(text) text.gsub(LINK_REGEX, '<a href="\1">\1</a>') end