class Nokogiri::XML::Builder

def comment(string)

Create a Comment Node with content of +string+
##
def comment(string)
  insert(doc.create_comment(string))
end