Regular expression to parse DMI's API Unit confluence page into json
([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}
If testing at https://regexr.com/ use /gm
/^([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}$/gm
{"label":"\1","unit":"\2","description":"\3"},
(remove the last coma, and surround with [
]
)