class HTree::DocType

Public Instance Methods

to_wabisabi() click to toggle source
# File vendor/qwik/lib/qwik/htree-to-wabisabi.rb, line 30
def to_wabisabi
  w = [:'!DOCTYPE']
  w << root_element_name
  w << 'PUBLIC'
  w << public_identifier
  w << system_identifier
  return w
end