diff --git a/README.md b/README.md index a35d64f..80621ce 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ The below options are applicable for both `xml2js()` and `xml2json()` functions. |:--------------------|:--------|:------------| | `compact` | `false` | Whether to produce detailed object or compact object. | | `trim` | `false` | Whether to trim whitespace characters that may exist before and after the text. | -| `sanitize` (Deprecated) | `false` | Whether to replace `&` `<` `>` with `&` `<` `>` respectively, in the resultant text. | +| `sanitize` ([Deprecated](https://github.com/nashwaan/xml-js/issues/26)) | `false` | Whether to replace `&` `<` `>` with `&` `<` `>` respectively, in the resultant text. | | `nativeType` | `false` | Whether to attempt converting text of numerals or of boolean values to native type. For example, `"123"` will be `123` and `"true"` will be `true` | | `addParent` | `false` | Whether to add `parent` property in each element object that points to parent object. | | `alwaysArray` | `false` | Whether to always put sub element, even if it is one only, as an item inside an array. `` will be `a:[{b:[{}]}]` rather than `a:{b:{}}` (applicable for compact output only). |