class Geminabox::Server

def href(text)

def href(text)
  if text && (text.start_with?('http://') || text.start_with?('https://'))
    Rack::Utils.escape_html(text)
  else
    '#'
  end
end