Replymessage unavailable
• Use a backtick (`) on both ends of your single line:
`print("hello world")`
• For more lines, use three backticks (```) before the first line, and after the last (and add the language you're using, Telegram now supports it):
```python
def hello(name):
print(f"hello {name}")
```
• You can also select text when typing, and select markdown formatting.