Let the user pass a function to `Saxy.parse_*` instead of callback module for simple use cases. For example: ```elixir Saxy.parse_string(xml, fn(event, acc) -> IO.inspect(event) acc end, []) ```
Let the user pass a function to
Saxy.parse_*instead of callback module for simple use cases.For example: