cmark

My personal build of CMark ✏️

Commit
5c4940091e4802f1ceeb780c00262f957e52fa49
Parent
77fafeeaa9e9076861b288fd13c7b4731e61da83
Author
John MacFarlane <jgm@berkeley.edu>
Date

updated spec.txt

Diffstat

1 file changed, 6 insertions, 8 deletions

Status File Name N° Changes Insertions Deletions
Modified test/spec.txt 14 6 8
diff --git a/test/spec.txt b/test/spec.txt
@@ -2363,7 +2363,7 @@ them.
 
 .
 [Foo bar]:
-<my url>
+<my%20url>
 'title'
 
 [Foo bar]
@@ -6465,8 +6465,8 @@ following rules apply:
 A [link destination](@link-destination) consists of either
 
 - a sequence of zero or more characters between an opening `<` and a
-  closing `>` that contains no line breaks or unescaped `<` or `>`
-  characters, or
+  closing `>` that contains no spaces, line breaks, or unescaped
+  `<` or `>` characters, or
 
 - a nonempty sequence of characters that does not include
   ASCII space or control characters, and includes parentheses
@@ -6532,8 +6532,8 @@ Both the title and the destination may be omitted:
 <p><a href="">link</a></p>
 .
 
-If the destination contains spaces, it must be enclosed in pointy
-braces:
+The destination cannot contain spaces or line breaks,
+even if enclosed in pointy brackets:
 
 .
 [link](/my uri)
@@ -6544,11 +6544,9 @@ braces:
 .
 [link](</my uri>)
 .
-<p><a href="/my%20uri">link</a></p>
+<p>[link](&lt;/my uri&gt;)</p>
 .
 
-The destination cannot contain line breaks, even with pointy braces:
-
 .
 [link](foo
 bar)