feat: Support atlas_client module:

- Add client for atlas module
- Add unit tests to test the workflow
- Remove println statements from file_or_image_exists
- Remove println statements from link processing loop
This commit is contained in:
Mahmoud-Emad
2025-11-04 15:53:31 +02:00
parent ecfe77a2dc
commit 8bfb021939
11 changed files with 2010 additions and 3 deletions

View File

@@ -118,7 +118,6 @@ fn (mut p Page) find_links(content string) ![]Link {
link.is_file_link = false
link.is_image_link = false
}
println(link)
links << link
pos = close_paren + 1
@@ -232,7 +231,6 @@ fn (mut p Page) process_links(mut export_dir pathlib.Path) !string {
// Process links in reverse order to maintain string positions
for mut link in links.reverse() {
println(link)
if link.status != .found {
continue
}