I am creating a list of instructions for one of my projects in mkdocs, which I believe uses python-markdown as its markdown engine. But when I try to put a fenced code block in between numbers in the list it renders the numbering wrong.
An example of what is failing me (I also tried to put newlines between each backtick fence and the actual words but it still messes up the numbering):
1. Click this
```
some code
```
2. Click that
which renders something like this:
1. Click this
some code
1. Click that
Then when I try to indent it it just messes up the rendering:
1. Click this
```
some code
```
2. Click that
To
1. Click this ``` some code ```
2. Click that
Yes tabbing works, but what if I wanted to do code highlighting with
```language
. Is there a way to keep the fenced code blocks, but also maintain the list numbering.