File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5353 id : frameworks
5454 attributes :
5555 label : Frameworks
56- description : What framework(s) does this plugin use? (Select all that apply)
56+ description : What framework(s) does this plugin use? (Select all that apply, or choose None )
5757 multiple : true
5858 options :
59+ - None
5960 - DPF
6061 - Faust
6162 - FLTK
Original file line number Diff line number Diff line change 8989 const regex = new RegExp(`### ${fieldName}\\s*\\n\\s*([^#]+?)(?=###|$)`, 'i');
9090 const match = body.match(regex);
9191 if (!match) return [];
92- return match[1].split(',').map(s => s.trim()).filter(s => s && s !== '_No response_');
92+ return match[1]
93+ .split(',')
94+ .map(s => s.trim())
95+ .filter(s => s && s !== '_No response_' && s.toLowerCase() !== 'none');
9396 };
9497
9598 let entry = {};
You can’t perform that action at this time.
0 commit comments