Sha256: 6202c032a59dcf782ac46322649407074246b413ba6366e188fa054c9d59da2e

Contents?: true

Size: 275 Bytes

Versions: 1

Compression:

Stored size: 275 Bytes

Contents

require 'malt/formats/abstract'

module Malt::Format

  #
  class HTML < Abstract

    register 'html'

    #
    def html(*)
      text
    end

    # HTML is HTML ;)
    def to_html(*)
      self
    end

    private

      #
      def render_engine
      end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
malt-0.1.1 lib/malt/formats/html.rb