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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user