diff --git a/src/util.ts b/src/util.ts index ce4cc6d..6072f5c 100644 --- a/src/util.ts +++ b/src/util.ts @@ -140,7 +140,7 @@ export function processKeyValueGroups(str: string) { const results = []; lines.forEach(function (line) { - const matches = line.match(/([\w/]+):\s(.*)/); + const matches = line.match(/(\w+):\s(.*)/); if (matches === null) { return;