Skip to content

Commit

Permalink
use html tags instead of newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
shiltemann committed Jul 4, 2024
1 parent 16de656 commit b7fa991
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/google-form-event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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 += "<br>TODO: add the following contributors to the GTN: <br> #{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 += "<br><br>Remarks from submitter:<br> #{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}"

0 comments on commit b7fa991

Please sign in to comment.