Warning, /graphics/okular/autotests/data/imageSizes.md is written in an unsupported language. File is not indexed.

0001 # Test for specifying image sizes in markdown
0002 
0003 (c)
0004 
0005 ## small image
0006 
0007 * no explicit size:
0008 
0009 ![potato](potato.jpg)
0010 
0011 * only width specified `=100x`:
0012 
0013 ![potato](potato.jpg =100x)
0014 
0015 * only height specified `=x100`:
0016 
0017 ![potato](potato.jpg =x100)
0018 
0019 * both specified `=100x100`:
0020 
0021 ![potato](potato.jpg =100x100)
0022 
0023 * only width, using html `4200x`:
0024 
0025 <img src="potato.jpg" alt="potato" width="4200"/>
0026 
0027 * both specified, using html `4200x4200`:
0028 
0029 <img src="potato.jpg" alt="potato" width="4200" height="4200"/>
0030 
0031 ## wide image
0032 
0033 * no explicit size:
0034 
0035 ![1500x300](1500x300.png)
0036 
0037 * only width specified `=100x`:
0038 
0039 ![1500x300](1500x300.png =100x)
0040 
0041 * only height specified `=x100`:
0042 
0043 ![1500x300](1500x300.png =x100)
0044 
0045 * both specified `=100x100`:
0046 
0047 ![1500x300](1500x300.png =100x100)
0048 
0049 * only height specified, using html `x4200`:
0050 
0051 <img src="1500x300.png" alt="1500x300" height="4200"/>
0052 
0053 * both specified, using html `4200x4200`:
0054 
0055 <img src="1500x300.png" alt="1500x300" width="4200" height="4200"/>
0056 
0057 ## tall image
0058 
0059 * no explicit size:
0060 
0061 ![300x1500](300x1500.png)
0062 
0063 * only width specified `=100x`:
0064 
0065 ![300x1500](300x1500.png =100x)
0066 
0067 * only height specified `=x100`:
0068 
0069 ![300x1500](300x1500.png =x100)
0070 
0071 * both specified `=100x100`:
0072 
0073 ![300x1500](300x1500.png =100x100)
0074 
0075 * both specified, using html `4200x4200`:
0076 
0077 <img src="300x1500.png" alt="300x1500" width="4200" height="4200"/>