Simple bug/request for meeting-note script:
When the "headline prefix" is empty, the note filename will start with a blank space.
In this case, it would make sense to remove the blank space separator.
Something like
var headline
if (headlinePrefix != '') {
headline = headlinePrefix + " " + dateString;
} else {
headline = dateString;
}
instead of
var headline = headlinePrefix + " " + dateString;
@pbek , @sanderboom , @wiktor2200