diff options
-rw-r--r-- | spec.txt | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -7512,7 +7512,8 @@ Here is a simple inline link: ```````````````````````````````` -The title may be omitted: +The title, the link text and even +the destination may be omitted: ```````````````````````````````` example [link](/uri) @@ -7520,8 +7521,12 @@ The title may be omitted: <p><a href="/uri">link</a></p> ```````````````````````````````` +```````````````````````````````` example +[](./target.md) +. +<p><a href="./target.md"></a></p> +```````````````````````````````` -Both the title and the destination may be omitted: ```````````````````````````````` example [link]() @@ -7536,6 +7541,13 @@ Both the title and the destination may be omitted: <p><a href="">link</a></p> ```````````````````````````````` + +```````````````````````````````` example +[]() +. +<p><a href=""></a></p> +```````````````````````````````` + The destination can only contain spaces if it is enclosed in pointy brackets: |