From b7fa99153336b7228edd3d442029807efe5afa4f Mon Sep 17 00:00:00 2001 From: Saskia Hiltemann Date: Thu, 4 Jul 2024 17:59:18 +0200 Subject: [PATCH] use html tags instead of newlines --- bin/google-form-event.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bin/google-form-event.rb b/bin/google-form-event.rb index f17a1a0fd56c33..52b2e1ff6b04b0 100644 --- a/bin/google-form-event.rb +++ b/bin/google-form-event.rb @@ -73,12 +73,13 @@ if row['Organizers not yet in the GTN CONTRIBUTORS file'] - pr_message += "\nTODO: add the following contributors to the GTN: \n #{row['Organizers not yet in the GTN CONTRIBUTORS file']}" + pr_message += "
TODO: add the following contributors to the GTN:
#{row['Organizers not yet in the GTN CONTRIBUTORS file']}" end if row['Anything else we should know?'] - pr_message += "\n\nRemarks from submitter:\n #{row['Anything else we should know?']}" + pr_message += "

Remarks from submitter:
#{row['Anything else we should know?']}" end end + puts "new_ids=#{count}" -puts "pr_message=#{pr_message.gsub(/\n/,"\\n")}" +puts "pr_message=#{pr_message}"