mirror of
https://github.com/DS4SD/docling.git
synced 2025-12-08 20:58:11 +00:00
feat(html): Support in-line anchor tags in HTML texts (#1659)
* 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>
This commit is contained in:
36
tests/data/html/hyperlink_05.html
vendored
Normal file
36
tests/data/html/hyperlink_05.html
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user