In my Jupyter notebook I have the following Markdown code block:
````python
[[0 1 0 0 0 0]
[0 1 1 0 1 1] - [0 0 1 0 0 0]
[0 0 0 0 1 0]
[0 0 0 0 0 1]]
````
which is rather unexpectedly rendering as
on my local machine as well as on Nbviewer. In other words the whitespace in front of the first vector [[0 1 0 0 0 0] seems to be getting ignored. I have used single spaces to create this whitespace, not tabs.
Any idea on how to resolve this problem? Thank you.