File: images_with_size.html

package info (click to toggle)
python-html2text 2025.4.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 976 kB
  • sloc: python: 1,659; sh: 32; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 855 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<img src='image_without_dimensions.jpg' alt='An image without dimensions' style='ignored-style' />

<img src='image_with_width.jpg' alt='An image with a width attr' width='300' data-ignored='ignored data' />

<img src='image_with_width.jpg' alt='An image with a height attr' height='300' data-ignored='ignored data' />

<img src='image_with_width_and_height.jpg' alt='An image with width and height' width='300' height='300' id='ignored-id' />
<img src='image_with_width_and_height.jpg' width='300' height='300' id='ignored-id' />
<img src='image_with_width_and_height.jpg' id='ignored-id' />
<img id='ignored-id' />

<img src='image_with_no_width_value.jpg' width height='123' id='ignored-id' />
<img src='image_with_no_height_value.jpg' width='123' height id='ignored-id' />
<img src='image_with_no_dimention_values.jpg' width height id='ignored-id' />