# File lib/markaby/builder_tags.rb, line 30
    def head(*args, &block)
      tag!(:head, *args) do
        tag!(:meta, "http-equiv" => "Content-Type", "content" => "text/html; charset=utf-8") if @output_meta_tag == 'xhtml'
        tag!(:meta, "charset" => "utf-8") if @output_meta_tag == 'html5'
        instance_eval(&block)
      end
    end