How does one escape the "backslash square brackets" \[ \] sequence in Markdown for GitHub?
The sequence produces a <pre><code>...</code></pre>
section.
This is only a problem with Markdown for GitHub. I can write it here without the problem:
\[something \]
This code in GitHub will however produce
\ something
I have resorted to surrounding my bracketed string with backticks: `[[320,50],[300,250]]`
Which turns it into:
[[320,50],[300,250]]
So now my array doesn't turn into a link.