Sha256: eba4f7e3b0e545db983d7a14eb06ca45d6b95804ee82ef85342a42db098844fd
Contents?: true
Size: 371 Bytes
Versions: 22
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true module PagesCore module Extensions module StringExtensions def to_html_with(append, options = {}) to_html(options.merge(append: append)) end def to_html(options = {}) PagesCore::HtmlFormatter.to_html(self, options) end end end end String.include PagesCore::Extensions::StringExtensions
Version data entries
22 entries across 22 versions & 1 rubygems