Microsoft Teams escaping underscores in text
问题 I have following function in ruby to send aws logs to microsoft team channel through webhook. Some text contains underscore signs like connection_web but appears like connectionweb in MS teams. How to get the exact output ? require 'json' require 'net/https' require 'uri' require 'base64' require 'zlib' require 'stringio' def lambda_handler(event:, context:) log_event = JSON.parse(decode_and_decompress(event["awslogs"]["data"])) response = speak(messages_from_blob(log_event)) puts response