I am hosting a Jekyll Blog on Github and write my posts with Markdown. When I am using the '|' character, I do it the following way:
O = {x ∈ Z+ | x is odd and x < 10}
The page then shows:
O = {x ∈ Z+ x is odd and x < 10}
I have tried this but it doesn't work:
{% raw %}
O = {x ∈ Z+ | x is odd and x < 10}
{% endraw %}
How can I tell Markdown to not escape the '|' character?