Sha256: dfc2d0bf378ed0e6a58ccbc3990da2f5226d401045c92a4d971de68040e4fb9a
Contents?: true
Size: 583 Bytes
Versions: 9
Compression:
Stored size: 583 Bytes
Contents
module Arbre module HTML class Document < Tag def build(*args) super build_head build_body end def document self end def tag_name 'html' end def doctype '<!DOCTYPE html>'.html_safe end def to_s doctype + super end protected def build_head @head = head do meta :"http-equiv" => "Content-type", content: "text/html; charset=utf-8" end end def build_body @body = body end end end end
Version data entries
9 entries across 9 versions & 2 rubygems