From 9870dc7b0cbc97e2c9340ec22a3cb29bc98ebdf0 2013-09-23 22:15:26 From: Min RK Date: 2013-09-23 22:15:26 Subject: [PATCH] Merge pull request #4261 from ngoldbaum/master Fixing a formatting error in the custom display example notebook. --- diff --git a/examples/notebooks/Custom Display Logic.ipynb b/examples/notebooks/Custom Display Logic.ipynb index ea81c52..2614ba6 100644 --- a/examples/notebooks/Custom Display Logic.ipynb +++ b/examples/notebooks/Custom Display Logic.ipynb @@ -78,12 +78,12 @@ "source": [ "The main idea of the first approach is that you have to implement special display methods, one for each representation you want to use. The names of the special methods are self explanatory:\n", "\n", - "* _repr_html_\n", - "* _repr_json_\n", - "* _repr_jpeg_\n", - "* _repr_png_\n", - "* _repr_svg_\n", - "* _repr_latex_\n", + "* `_repr_html_`\n", + "* `_repr_json_`\n", + "* `_repr_jpeg_`\n", + "* `_repr_png_`\n", + "* `_repr_svg_`\n", + "* `_repr_latex_`\n", "\n", "As an illustration, we build a class that holds data generated by sampling a Gaussian distribution with given mean and variance. Each frontend can then decide which representation it will display be default. Further, we show how to display a particular representation." ]