From 48042adaf9632e74bb939d2cbb8d78f55153a2bb Mon Sep 17 00:00:00 2001 From: Tim Porath Date: Sun, 9 Dec 2018 18:42:30 -0500 Subject: [PATCH] Add Documentation regarding backslash escaping in Markdown File --- .../Working With Markdown Cells.ipynb | 28 ++++++++++++++----- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/docs/source/examples/Notebook/Working With Markdown Cells.ipynb b/docs/source/examples/Notebook/Working With Markdown Cells.ipynb index 6e5c6221a..2b4763095 100644 --- a/docs/source/examples/Notebook/Working With Markdown Cells.ipynb +++ b/docs/source/examples/Notebook/Working With Markdown Cells.ipynb @@ -93,13 +93,27 @@ ] }, { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And shorthand for links:\n", - "\n", - "[Jupyter's website](http://jupyter.org)" - ] + "cell_type": "markdown", + "metadata": { }, + "source": [ + "And shorthand for links:\n", + "\n", + "[Jupyter's website](http://jupyter.org)" + ] + }, + { + "cell_type": "markdown", + "metadata": { }, + "source": [ + "You can use backslash \\ to generate literal characters which would otherwise have special meaning in the Markdown syntax.\n", + "\n", + "```\n", + "\\*literal asterisks\\*\n", + " *literal asterisks*\n", + "```\n", + "\n", + "Use double backslash \\ \\ to generate the literal $ symbol." + ] }, { "cell_type": "markdown",