Merge pull request #3428 from minrk/escapeDollar

process escapes in mathjax

\$ can now be used to insert dollar signs in markdown cells
pull/37/head
Paul Ivanov 13 years ago
commit a024f850e6

@ -20,6 +20,7 @@ IPython.mathjaxutils = (function (IPython) {
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
displayAlign: 'left', // Change this to 'center' to center equations.

Loading…
Cancel
Save