When I create a table in ipython notebook, how can I escape pipes inside of text.
This is what I have
identifier | class name | args | distance function
------------|------------------|-------------------
“euclidean” | EuclideanDistance | | sqrt(sum((x - y)^2))
“minkowski” | MinkowskiDistance |p| `sum(|x - y|^p)^(1/p)`
It comes out as like below but obviously sum(|x - y|^p)^(1/p) is a formula and all the texts need to stay together...

