mirror of
https://github.com/DS4SD/docling.git
synced 2025-12-08 12:48:28 +00:00
* re-implement links for html backend. Signed-off-by: Roman Kayan BAZG <roman.kayan@bazg.admin.ch> * fix inline groups in list items. write specific test for find_parent_annotation of _extract_text_and_hyperlink_recursively. Signed-off-by: Roman Kayan BAZG <roman.kayan@bazg.admin.ch> * implement hack for images. Signed-off-by: Roman Kayan BAZG <roman.kayan@bazg.admin.ch> --------- Signed-off-by: Roman Kayan BAZG <roman.kayan@bazg.admin.ch>
36 lines
1.1 KiB
HTML
Vendored
36 lines
1.1 KiB
HTML
Vendored
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Image Hyperlink and Caption Example</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 2em; }
|
|
figure { max-width: 320px; margin: 2em 0; }
|
|
figcaption { background: #f3f3f3; color: #333; padding: 6px; text-align: center; font-style: italic; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Image as a hyperlink -->
|
|
<a href="https://www.example.com" target="_blank">
|
|
<img src="https://via.placeholder.com/200x100.png?text=Clickable+Image" alt="Clickable Example" />
|
|
</a>
|
|
|
|
<!-- Image with a caption -->
|
|
<figure>
|
|
<img src="https://via.placeholder.com/250x150.png?text=Captioned+Image" alt="Image with Caption" />
|
|
<figcaption>This is an example caption for the image.</figcaption>
|
|
</figure>
|
|
|
|
|
|
<!-- Image with a caption -->
|
|
<figure>
|
|
<a href="https://www.example.com" target="_blank">
|
|
<img src="https://via.placeholder.com/250x150.png?text=Captioned+Image" alt="Image with Caption" />
|
|
</a>
|
|
<figcaption>This is an example <a href="#caption">caption</a> for the image.</figcaption>
|
|
</figure>
|
|
|
|
|
|
</body>
|
|
</html> |