module GitlabKramdown::Parser::Autolink

URL auto-linking

This parser implements URL auto-linking support for the most widely used schemas

@see docs.gitlab.com/ee/user/markdown.html#url-auto-linking

Constants

ACHARS
PUNCTUATION_PAIRS

Public Class Methods

included(klass) click to toggle source
# File lib/gitlab_kramdown/parser/autolink.rb, line 24
def self.included(klass)
  klass.define_parser(:gitlab_autolink, AUTOLINK_START)
end

Public Instance Methods