diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-06 11:11:48 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-06 11:11:48 -0800 |
commit | 4c51f9648f7a868f05c70b4fb8b4242608716a0b (patch) | |
tree | 852d027a6138526bbcd3d2260d88d0c1e5468888 | |
parent | edfbed056fa5d744690d48abc1a0f6a1b9cf1569 (diff) |
Spec: use plain string content of label for alt text in images.
So, `foo bar` rather than `foo *bar*` or `foo <em>bar</em>` or
`foo <em>bar</em>`.
-rw-r--r-- | spec.txt | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -5686,9 +5686,9 @@ is followed by a link label (even though `[bar]` is not defined): ## Images An (unescaped) exclamation mark (`!`) followed by a reference or -inline link will be parsed as an image. The link label will be -used as the image's alt text, and the link title, if any, will -be used as the image's title. +inline link will be parsed as an image. The plain string content +of the link label will be used as the image's alt text, and the link +title, if any, will be used as the image's title. . ![foo](/url "title") @@ -5701,15 +5701,19 @@ be used as the image's title. [foo *bar*]: train.jpg "train & tracks" . -<p><img src="train.jpg" alt="foo <em>bar</em>" title="train & tracks" /></p> +<p><img src="train.jpg" alt="foo bar" title="train & tracks" /></p> . +Note that in the above example, the alt text is `foo bar`, not `foo +*bar*` or `foo <em>bar</em>` or `foo <em>bar</em>`. Only +the plain string content is rendered, without formatting. + . ![foo *bar*][] [foo *bar*]: train.jpg "train & tracks" . -<p><img src="train.jpg" alt="foo <em>bar</em>" title="train & tracks" /></p> +<p><img src="train.jpg" alt="foo bar" title="train & tracks" /></p> . . @@ -5717,7 +5721,7 @@ be used as the image's title. [FOOBAR]: train.jpg "train & tracks" . -<p><img src="train.jpg" alt="foo <em>bar</em>" title="train & tracks" /></p> +<p><img src="train.jpg" alt="foo bar" title="train & tracks" /></p> . . @@ -5777,7 +5781,7 @@ Collapsed: [*foo* bar]: /url "title" . -<p><img src="/url" alt="<em>foo</em> bar" title="title" /></p> +<p><img src="/url" alt="foo bar" title="title" /></p> . The labels are case-insensitive: @@ -5817,7 +5821,7 @@ Shortcut: [*foo* bar]: /url "title" . -<p><img src="/url" alt="<em>foo</em> bar" title="title" /></p> +<p><img src="/url" alt="foo bar" title="title" /></p> . . |