The plugin breaks highlight by replacing > with > within code blocks.
Markdown code:
>>> 1 == 1
True
>>> 1 == 2
False
>>>
>>> its_raining = True
>>> its_raining
True
>>>
Resulting output:
>>> 1 == 1
True
>>> 1 == 2
False
>>>
>>> its_raining = True
>>> its_raining
True
>>>
Correct Display should be:
1 == 1
True
1 == 2
False
its_raining = True
its_raining
True
The plugin breaks highlight by replacing > with > within code blocks.
Markdown code:
Resulting output:
>>> 1 == 1
True
>>> 1 == 2
False
>>>
>>> its_raining = True
>>> its_raining
True
>>>
Correct Display should be: