aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-05-19 22:42:19 +0200
committerJonas Smedegaard <dr@jones.dk>2024-08-27 23:39:36 +0200
commit5d16a8ecc1797be48712fb0752b5ee53bf37fcdd (patch)
treea19057619aad430bcb4a175794acd610abcee95d
parent92f5ced0b3af6c5095ec2bf83f963445c627dd03 (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} };