g-s-k / matlab-toml

TOML implementation for MATLAB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Array brackets on multiple lines are not parsed correctly

opened this issue · comments

A multiline, multidimensional array like below would not be parsed correctly. At the first closing bracket, the parser would assume a complete array instead of searching for the proper amount of closing brackets.

a3r3csplit = [
	[
		5 , 6 , 8
	], 
	[
		1, 2, 3
	],
	[
		10, 12, 14
	]     
			   
]