sweet_xml icon indicating copy to clipboard operation
sweet_xml copied to clipboard

Results 33 sweet_xml issues
Sort by recently updated
recently updated
newest added

Strings don't behave as described by the README: "If you use the optional modifier o together with a soft cast modifier (uppercase), then the value is set to nil" `~x"./NAME/text()"So`...

I'm listing here the github issues regarding the behavior of the modifiers. As a lot of information is lost between the call of `xpath/xmap`, the internal call of `:xmerl_xpath.string`, and...

Hello! We're using SweetXML in production and we've been having some excessive memory usage that we've not been able to debug. In our latest text an 80MB XML file uses...

Version 0.6.6 Using the README example: ```iex iex(3)> result = doc |> xpath(~x"//matchup/name/text()") 'Match One' iex(4)> result = doc |> xpath(~x"//matchup/name/text()"s) "Match OneMatch TwoMatch Three" ``` For the `s` modifier,...

Hello when I install your package and run ``` iex -S mix ``` I get the following error message from iex: ``` ** (Mix) Could not start application xmerl: could...

HTML entities in the element content appear to confuse xpath. It either seems to truncate the string on certain valid entities (eg, `<`) or blows up entirely. Example failures: `_the_following_data_...

Hi! Validating XML using XSD is a good feature. In xmerl we can see http://erlang.org/doc/man/xmerl_xsd.html#validate-2 . How should I proceed to implement it ?

Hi, I'm trying to parse a XML feed with sweet_xml. Due to the nature of the web ;-) there may be feeds that are invalid. In this case I had...

Hex package is 0.6.5 and has been pushed on february 2017. Is it planned to have a new package released ?

Hi everybody, I'm a newbie in elixir. I wrote a little program to parse osm-xml data and used this sweet_xml library. I've already posted an issue on [StackOverflow](https://stackoverflow.com/questions/52283311/need-help-fixing-memory-leak-for-elixir-and-sweet-xml-library/). Please this...