You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have found a bunch of images which had wrong "src", but htmltest missed this issues.
I quickly checked the code, and seems like it validate only existence of attributes like src or rel, but does not actually check if image exists, like it does with links.
Describe the solution you'd like
Validate that image src are actually exists
Describe alternatives you've considered
Interestingly that I tried to find alternative solution, using my static side builder, in my case Hugo. For links it does provide special helper calledref, which errors if url is wrong, but for images there is no such thing...
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have found a bunch of images which had wrong "src", but htmltest missed this issues.
I quickly checked the code, and seems like it validate only existence of attributes like src or rel, but does not actually check if image exists, like it does with links.
Describe the solution you'd like
Validate that image src are actually exists
Describe alternatives you've considered
Interestingly that I tried to find alternative solution, using my static side builder, in my case Hugo. For links it does provide special helper called
ref
, which errors if url is wrong, but for images there is no such thing...The text was updated successfully, but these errors were encountered: