34 lines
834 B
Raku
34 lines
834 B
Raku
. tests/functions.sh
|
|
|
|
title "embedded images"
|
|
|
|
rc=0
|
|
MARKDOWN_FLAGS=
|
|
|
|
try 'image with size extension' \
|
|
'' \
|
|
'<p><img src="pic" height="200" width="200" alt="picture" /></p>'
|
|
|
|
try 'image with height' \
|
|
'' \
|
|
'<p><img src="pic" height="200" alt="picture" /></p>'
|
|
|
|
try 'image with width' \
|
|
'' \
|
|
'<p><img src="pic" width="200" alt="picture" /></p>'
|
|
|
|
try 'image with percentage sizes' \
|
|
'' \
|
|
'<p><img src="pic" height="20%" width="20%" alt="picture" /></p>'
|
|
|
|
try 'image with percentage height' \
|
|
'' \
|
|
'<p><img src="pic" height="20%" alt="picture" /></p>'
|
|
|
|
try 'image with width' \
|
|
'' \
|
|
'<p><img src="pic" width="20%" alt="picture" /></p>'
|
|
|
|
summary $0
|
|
exit $rc
|