I don't know if it is the place to ask this. But I will try.
What I need is, for example, if user writes some text in Code Mirror editor like:
a1=Some Text
a11 = Some Child text
and the parser should check if the grammer is correct, and parse it to:
{
'a1' : {
'value' : "Some Text",
'a11' : "some child text"
}
}
Something like this according to the gramme.
So, is there any parser library or something in javascript?