class Nokogiri::XML::SAX::Document
def start_element(name, attrs = [])
end
]
["foo:bar", [["foo:quux", "xxx"]]],
["root", [["xmlns:foo", "http://foo.example.com/"], ["xmlns", "http://example.com/"]]],
parser.document.start_elements => [
assert_pattern do
XML
parser.parse(<<~XML)
namespaced elements or attributes will be returned as strings including the prefix:
Note that the element namespace and any attribute namespaces are not provided, and so any
#start_element_namespace method instead.
💡If you're dealing with XML and need to handle namespaces, use the
[ ["xmlns:foo", "http://sample.net"], ["size", "large"] ]
- +attrs+ (Array
- +name+ (String) the name of the element
[Parameters]
Called at the beginning of an element.
##
def start_element(name, attrs = []) end