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  0010 0011 * only width specified `=100x`: 0012 0013  0014 0015 * only height specified `=x100`: 0016 0017  0018 0019 * both specified `=100x100`: 0020 0021  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  0036 0037 * only width specified `=100x`: 0038 0039  0040 0041 * only height specified `=x100`: 0042 0043  0044 0045 * both specified `=100x100`: 0046 0047  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  0062 0063 * only width specified `=100x`: 0064 0065  0066 0067 * only height specified `=x100`: 0068 0069  0070 0071 * both specified `=100x100`: 0072 0073  0074 0075 * both specified, using html `4200x4200`: 0076 0077 <img src="300x1500.png" alt="300x1500" width="4200" height="4200"/>