Add Documentation regarding backslash escaping in Markdown File

Tim Porath 7 years ago
parent f759e4d3be
commit 48042adaf9

@ -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",

Loading…
Cancel
Save