# File lib/sax-machine/handlers/sax_ox_handler.rb, line 13
    def sax_parse(xml_input)
      # Ox requires input to be streamable
      xml_input = StringIO.new(xml_input) if xml_input.is_a?(String)

      Ox.sax_parse(self, xml_input,
        symbolize: false,
        convert_special: true,
        skip: :skip_return,
      )
    end