summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-05-19 22:42:19 +0200
committerJonas Smedegaard <dr@jones.dk>2021-05-19 22:42:19 +0200
commitb108c8bebbff70fedae6425128619e038fc73352 (patch)
tree07e71e5878a6f97eb139196753cedbeedfd931b7
parentdd6cbebc3bd4a0bdea6747dfe42d8cfd1af01e50 (diff)
fix add newline betwen description and guides in output
-rwxr-xr-xbin/events2md.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/events2md.pl b/bin/events2md.pl
index 7e41f28..8618b24 100755
--- a/bin/events2md.pl
+++ b/bin/events2md.pl
@@ -182,7 +182,7 @@ sub print_event
$description =~ s/\n\n[Pp]ris:\s*((?!\n).+)\s*\z//m;
my $price = $1;
if ( $event->{ATTENDEE} ) {
- $description .= "\nMed ";
+ $description .= " \nMed ";
$description .= join ' og ',
map { $_->{CN} || $_->{value} =~ s/^mailto://r }
@{ $event->{ATTENDEE} };