aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-04-07 08:39:26 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-04-07 08:39:26 -0700
commitdb541a2dcecf6d8a9d7a11f091ae69e18bf31b09 (patch)
treeac16a07995a940e758228d1e7e8770105a38012d
parent4b8693ed763db84406b475db38a77ee90865c5c1 (diff)
Added backslash escape + char entity case.
-rw-r--r--spec.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec.txt b/spec.txt
index 31e1714..3913de4 100644
--- a/spec.txt
+++ b/spec.txt
@@ -5539,6 +5539,7 @@ not have their usual Markdown meanings:
\* not a list
\# not a heading
\[foo]: /url "not a reference"
+\&ouml; not a character entity
.
<p>*not emphasized*
&lt;br/&gt; not a tag
@@ -5547,7 +5548,8 @@ not have their usual Markdown meanings:
1. not a list
* not a list
# not a heading
-[foo]: /url &quot;not a reference&quot;</p>
+[foo]: /url &quot;not a reference&quot;
+&amp;ouml; not a character entity</p>
````````````````````````````````