On , I learnt ...

How to embed markdown content in a Github code block

Normally, fenced code blocks are delimited with triple backticks ```.

If your code block is a markdown snippet including triple backticks, then the solution is to delimit with a block of 4 (or more) backticks.

This is how you create code blocks in markdown:

````
Here is the code:
```
def hello():
   return "hello"
```
````