parses i18next translations to AST
npm install i18next-translation-parser



This is a module to parse an i18next translation string into an AST and back to a string.
Source can be loaded via npm or downloaded from this repo.
```npm package
$ npm install i18next-translation-parser
`js
import { parse, stringify } from 'i18next-translation-parser';
const AST = parse('
parse('test {{val}} text {{- encoded}} with {{val, format}} some $t{nesting} help');
// will return
/*
[
{
"type": "text",
"content": "test "
},
{
"type": "interpolation",
"raw": "{{val}}",
"prefix": "{{",
"suffix": "}}",
"content": "val",
"variable": "val"
},
{
"type": "text",
"content": " text "
},
{
"type": "interpolation_unescaped",
"raw": "{{- encoded}}",
"prefix": "{{-",
"suffix": "}}",
"content": " encoded",
"variable": "encoded"
},
{
"type": "text",
"content": " with "
},
{
"type": "interpolation",
"raw": "{{val, format}}",
"prefix": "{{",
"suffix": "}}",
"content": "val, format",
"variable": "val, format"
},
{
"type": "text",
"content": " some "
},
{
"type": "nesting",
"raw": "$t{nesting}",
"prefix": "$t{",
"suffix": "}",
"content": "nesting",
"variable": "nesting"
},
{
"type": "text",
"content": " help"
}
]
*/
``