I have a README.md markdown file that I use to describe a project hosted on GitHub. Inside this file, I have several headers and subheadings, each of which begins with one or more hashes, as usual, in markdowns.
Now I want the text of one header to be C# , but GitHub does not consider the hash to be part of the text, but interprets it as a (optional) closing hash for the header.
Even if I leave the hash, prefixing it with a backslash, this will not work. Therefore, if I type
#
I get:
C
If i use
#
I get:
C\
How to write this header line correctly?
source share