*PICT
has been extended to allow user defined alt
valuesalt
text is provided, the alt
attribute will be the filenamealt
attribute to an empty string because that is the way to mark an image to be ignored by the the reader machines.alt
text for the images: &
and "
characters, alt=
and title=
must be escaped to "
, &
, alt=
and title=
Odin Command | HTML Generated |
---|---|
*PICT "image.jpg"
|
<img src="...\image.jpg" alt="image" />
|
*PICT "thisIsAnImage.jpg"
|
<img src="...\thisIsAnImage.jpg" alt="this Is An Image" />
|
*PICT "image.jpg;this is the alt text"
|
<img src="...\image.jpg" alt="this is the alt text" />
|
*PICT "image.jpg;"
|
<img src="...\image.jpg" alt="" />
|
*PICT "image.jpg;alt=this is the alt text"
|
<img src="...\image.jpg" alt="this is the alt text" />
|
*PICT "image.jpg;alt=this is the alt text title=this is the title"
|
<img src="...\image.jpg" alt="this is the alt text" title="this is the title"/>
|
*PICT "image.jpg;title=this is the title"
|
<img src="...\image.jpg" alt="" title="this is the title"/>
|
*PICT "image.jpg;title=this is the title alt=this is the alt text"
|
<img src="...\image.jpg" alt="this is the alt text" title="this is the title"/>
|