matthewmatician / xml-flow

An XML/HTML stream reader, now with less suck!
MIT License
55 stars 18 forks source link

Support xmlns tags #10

Open ezequiel-neutrona opened 8 years ago

ezequiel-neutrona commented 8 years ago

Provide support for tags with namespaces I created a small patch that has a stack of namespace prefixes. It also contains a test for:

<root xmlns:a="my:ns">
  <a:alien>Thing1</a:alien>
</root>

which emits tag:my:ns alien event. Notice the space between the namespace uri and the tag name. I chose the space because it's not a valid tag name character.

xmlns patch.zip

matthewmatician commented 8 years ago

@ezequiel-neutrona: Can you provide a pull request?

ezequiel-neutrona commented 8 years ago

Sure. Tomorrow I'll make a pull request for this.