This library does not appear to be encoding entities correctly, for example with ampersand &, it will only encode the first occurrence.
&& -> &&&& -> &&&&& -> &&&
The expected values for the three examples would be &&, &&, and &&&. Passing a mixture of encoded and non-encoded ampersands to the Evernote API returns an error.
This library does not appear to be encoding entities correctly, for example with ampersand
&
, it will only encode the first occurrence.&&
->&&
&&
->&&
&&&
->&&&
The expected values for the three examples would be
&&
,&&
, and&&&
. Passing a mixture of encoded and non-encoded ampersands to the Evernote API returns an error.