Sha256: dd4a278212f0c00a8e09c9a84f7a65dea817c14d21d0ed8b2786e87622efd93a
Contents?: true
Size: 507 Bytes
Versions: 4
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true # AutoHtml is a collection of filters that transform plain text into HTML code. module AutoHtml autoload :Pipeline, 'auto_html/pipeline' autoload :TagHelper, 'auto_html/tag_helper' autoload :Emoji, 'auto_html/emoji' autoload :HtmlEscape, 'auto_html/html_escape' autoload :Image, 'auto_html/image' autoload :Link, 'auto_html/link' autoload :Markdown, 'auto_html/markdown' autoload :SimpleFormat, 'auto_html/simple_format' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
auto_html-2.2.0 | lib/auto_html.rb |
auto_html-2.1.1 | lib/auto_html.rb |
auto_html-2.1.0 | lib/auto_html.rb |
auto_html-2.0.2 | lib/auto_html.rb |