mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
509 B
23 lines
509 B
# frozen_string_literal: true
|
|
|
|
module Rouge
|
|
autoload :InheritableHash, 'rouge/util'
|
|
autoload :Token, 'rouge/token'
|
|
autoload :Lexer, 'rouge/lexer'
|
|
autoload :RegexLexer, 'rouge/regex_lexer'
|
|
|
|
module Lexers
|
|
autoload :JSON, 'rouge/lexers/json'
|
|
autoload :Shell, 'rouge/lexers/shell'
|
|
end
|
|
|
|
autoload :Formatter, 'rouge/formatter'
|
|
|
|
module Formatters
|
|
autoload :HTML, 'rouge/formatters/html'
|
|
autoload :HTMLInline, 'rouge/formatters/html_inline'
|
|
end
|
|
|
|
autoload :Theme, 'rouge/theme'
|
|
end
|