I am using the following command to parse lu file to json file, which then can be given to QnA Maker service to generate kb. But I found that the command replaces comma with "\r\n". For example:
### ? start
```markdown
Lorem ipsum dolor, Lorem ipsum dolor Lorem ipsum dolor.
```
The markdown syntax above is getting converted into the following:
{
"qnaList": [
{
"id": 0,
"answer": "Lorem ipsum dolor\r\n",
"source": "custom editorial",
"questions": [
"start"
],
"metadata": []
},
]
}
The text is also getting truncated. How do I resolve this issue ?
Thanks