online-judge
online-judge copied to clipboard
Nested `span`s in markdown gives unexpected output
When we have a nested span:
<span> <span> test </span> </span>
The expected text should be:
test
However, we get:
test </span>
For problem descriptions, this happens both with and without full markdown access, so it most likely doesn't have anything to do with bleach.
Forgot to mention this doesn't seem to happen with other elements (e.g div).