Skip to content

Commit 4191319

Browse files
committed
fix(properties): allow quote-less props
1 parent 093d35f commit 4191319

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/templates.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const parseMeetingProperties = content => {
3333
// Handle multiline properties first with a generic regex
3434
// Matches: KEY="multiline content" where content can span multiple lines
3535
const multilineMatches = content.matchAll(
36-
/^([A-Z_][A-Z0-9_]*)="([\s\S]*?)"$/gm
36+
/^([A-Z_][A-Z0-9_]*)="?([\s\S]*?)"?$/gm
3737
);
3838

3939
for (const match of multilineMatches) {

0 commit comments

Comments
 (0)