While working with ONE-vscode partition editor, javascript ini parser has unexpected behaviour with ; in key. (unexpected for me but I think this is by the specification)
For example
aaa;bbb=ccc will parse as aaa=ccc where ;bbb is ignored.
to set key as aaa;bbb then we have to surround it with quotation or use esacpe sequence
'aaa;bbb'=ccc
aaa\;bbb=ccc
TODO
[ ] revise crew::read_ini library to support quotation(single/double)
While working with ONE-vscode partition editor, javascript ini parser has unexpected behaviour with
;
in key. (unexpected for me but I think this is by the specification)For example
aaa;bbb=ccc
will parse asaaa=ccc
where;bbb
is ignored. to set key asaaa;bbb
then we have to surround it with quotation or use esacpe sequence'aaa;bbb'=ccc
aaa\;bbb=ccc
TODO
crew::read_ini
library to support quotation(single/double)