Reputation: 3078
I'm trying to write "H:m:s" in some documentation, but GitHub keeps changing it to "HⓂ️s", since :m: is the code of the Ⓜ️ emoji.
How can I stop this behaviour?
Upvotes: 8
Views: 4280
Reputation: 58069
There are two ways to disable the rendering of an emoji:
`
or <code>
, or use 4 spaces before the line to make the whole line monospaced.Insert a zero-width space after the first colon, like this:
h:<zero-width space>m:s
You can copy a zero-width space from this Wikipedia article.
PS: for text (non-source context) you use the numeric entity representation, ​
(the example results in "h:m:s").
Upvotes: 14