Merge pull request #4257 from ctrlaltdelete00/MarkdownDocumentationBackslashEscapes

Add Documentation regarding backslash escaping in Markdown File
Min RK 7 years ago committed by GitHub
commit 68ec51d3db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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