# File lib/html5/treebuilders/base.rb, line 201 def insertDoctype(name, public_id, system_id) doctype = @doctypeClass.new(name) doctype.public_id = public_id doctype.system_id = system_id @document.appendChild(doctype) end