Ask HN: Is there an IM that supports code snippets?

5 points by dope ↗ HN

7 comments

[ 3.9 ms ] story [ 46.0 ms ] thread
Telegram does:

for one-liners: use `your one liner`

for multiline snippets: ``` multiline snippet ```

note there is no code highlight

Skype does: Start your message with `!! ` (without the back ticks).
Wow, did not know this - thanks!
Discord does: wrap your code in `` inline or ``` for a block.

Language highlighting can be supplied too:

  ```cpp
  /* some C++ code here */
  ```