Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
ArXiv:
Libraries:
Datasets
File size: 388 Bytes
2517be1
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
/**
 * Simplified HTML fallback for external images that fail to load.
 * Displays a centered message with a link to open the image in a new tab.
 */
export function getImageErrorFallbackHtml(src: string): string {
	return `<div class="image-error-content">
		<span>Image cannot be displayed</span>
		<a href="${src}" target="_blank" rel="noopener noreferrer">(open link)</a>
	</div>`;
}