web2md 0.1.3

A tool that fetches web pages and returns them as Markdown for MCP token efficiency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
use anyhow::{Context, Result};
use url::Url;
use web2md::{
    extract_feed_links, extract_metadata, normalize_crawl_url, parse_sitemap_urls, Browser,
    BrowserOptions, McpRequest, McpServer, PageToMarkdown,
};
use clap::{Parser, Subcommand, ValueEnum};
use serde::Serialize;
use std::collections::{HashSet, VecDeque};
use std::io::{self, BufRead, Write};
use std::time::Duration;

/// Output format for the fetch command
#[derive(Clone, Debug, ValueEnum)]
enum OutputFormat {
    /// Convert HTML to clean Markdown (default)
    Markdown,
    /// Emit raw HTML without conversion
    Html,
    /// Emit structured JSON with markdown and metadata
    Json,
    /// Emit plain text with Markdown syntax stripped (archival / NLP pipelines)
    Text,
}

/// Structured JSON output for `--format json` CLI flag.
#[derive(Debug, Serialize)]
struct CliJsonOutput {
    markdown: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    author: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    published_date: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    image: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    headline: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    site_name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    keywords: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    excerpt: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    canonical_url: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    language: Option<String>,
}

#[derive(Parser)]
#[command(name = "web2md")]
#[command(about = "Fetch web pages and convert them to Markdown")]
#[command(arg_required_else_help = false)]
struct Cli {
    /// URL to browse (defaults to interactive browse mode if no subcommand given)
    url: Option<String>,
    #[command(subcommand)]
    command: Option<Commands>,
}

#[derive(Subcommand)]
enum Commands {
    /// Fetch a single URL and print Markdown to stdout
    Fetch {
        /// Target URL
        url: String,
        /// Maximum output length
        #[arg(short, long)]
        max_length: Option<usize>,
        /// Request timeout in seconds
        #[arg(short, long)]
        timeout: Option<u64>,
        /// Include image references in Markdown output
        #[arg(short, long)]
        include_images: bool,
        /// Cookie to send with the request (format: name=value); can be given multiple times
        #[arg(short, long)]
        cookie: Vec<String>,
        /// Custom HTTP header (format: "Name: Value"); can be given multiple times
        #[arg(short = 'H', long)]
        header: Vec<String>,
        /// Output format: markdown, html, json, or text
        #[arg(short, long, value_enum, default_value = "markdown")]
        format: OutputFormat,
        /// Render Markdown with ANSI colors and formatting in the terminal
        #[arg(short, long)]
        render: bool,
        /// Polite delay between consecutive requests in milliseconds
        #[arg(long)]
        delay: Option<u64>,
        /// Keep <header> tags in output (stripped by default)
        #[arg(long)]
        keep_header: bool,
        /// Cache TTL in seconds (0 = disabled, default: 0)
        #[arg(long)]
        cache_ttl: Option<u64>,
        /// Extract only main content from <article>, <main>, or [role=main] elements
        #[arg(long)]
        main_content: bool,
        /// Write output to file instead of stdout (or directory when --depth > 0)
        #[arg(short, long)]
        output: Option<String>,
        /// Prepend YAML frontmatter (metadata) to Markdown output
        #[arg(long)]
        frontmatter: bool,
        /// CSS-like selector to exclude HTML elements (e.g. `.ad`, `#sidebar`); can be given multiple times
        #[arg(long)]
        exclude_selector: Vec<String>,
        /// Execute inline <script> blocks via the built-in JS interpreter and fold document.write output into the page
        #[arg(long)]
        javascript: bool,
        /// Post-load wait in milliseconds before processing (also caps timer callback delay)
        #[arg(long)]
        wait: Option<u64>,
        /// Disable URL blacklist filtering for ads/tracking pixels
        #[arg(long)]
        no_blacklist: bool,
        /// Recursively crawl same-origin links up to N levels deep (markdown output only)
        #[arg(long, default_value = "0")]
        depth: u32,
        /// Ignore robots.txt disallow rules and crawl-delay
        #[arg(long)]
        ignore_robots: bool,
        /// Additional blacklist pattern file (one host or path pattern per line)
        #[arg(long)]
        blacklist_file: Vec<String>,
        /// Do not load ~/.web2md/blacklist.txt
        #[arg(long)]
        no_user_blacklist: bool,
    },
    Browse {
        /// Starting URL
        url: String,
        /// Request timeout in seconds
        #[arg(short, long)]
        timeout: Option<u64>,
        /// Include image references in Markdown output
        #[arg(short, long)]
        include_images: bool,
        /// Cookie to send with the request (format: name=value); can be given multiple times
        #[arg(short, long)]
        cookie: Vec<String>,
        /// Custom HTTP header (format: "Name: Value"); can be given multiple times
        #[arg(short = 'H', long)]
        header: Vec<String>,
        /// Polite delay between consecutive requests in milliseconds
        #[arg(long)]
        delay: Option<u64>,
        /// Keep <header> tags in output (stripped by default)
        #[arg(long)]
        keep_header: bool,
        /// Cache TTL in seconds (0 = disabled, default: 0)
        #[arg(long)]
        cache_ttl: Option<u64>,
        /// Extract only main content from <article>, <main>, or [role=main] elements
        #[arg(long)]
        main_content: bool,
        /// Execute inline <script> blocks via the built-in JS interpreter and fold document.write output into the page
        #[arg(long)]
        javascript: bool,
        /// Post-load wait in milliseconds before processing (also caps timer callback delay)
        #[arg(long)]
        wait: Option<u64>,
        /// Disable URL blacklist filtering for ads/tracking pixels
        #[arg(long)]
        no_blacklist: bool,
        /// Ignore robots.txt disallow rules and crawl-delay
        #[arg(long)]
        ignore_robots: bool,
        /// Additional blacklist pattern file (one host or path pattern per line)
        #[arg(long)]
        blacklist_file: Vec<String>,
        /// Do not load ~/.web2md/blacklist.txt
        #[arg(long)]
        no_user_blacklist: bool,
    },
    /// Run as an MCP server (stdio JSON-RPC)
    Mcp,
    /// Discover URLs from a website's sitemap.xml and RSS/Atom feeds
    Sitemap {
        /// Target URL (sitemap.xml will be fetched from the same origin)
        url: String,
        /// Request timeout in seconds
        #[arg(short, long)]
        timeout: Option<u64>,
        /// Cookie to send with the request (format: name=value); can be given multiple times
        #[arg(short, long)]
        cookie: Vec<String>,
        /// Custom HTTP header (format: "Name: Value"); can be given multiple times
        #[arg(short = 'H', long)]
        header: Vec<String>,
        /// Also check the HTML page for RSS/Atom feed links
        #[arg(long)]
        feeds: bool,
    },
    /// Batch convert multiple URLs to Markdown from a file
    Batch {
        /// File containing one URL per line (lines starting with # are ignored)
        file: String,
        /// Request timeout in seconds
        #[arg(short, long)]
        timeout: Option<u64>,
        /// Include image references in Markdown output
        #[arg(short, long)]
        include_images: bool,
        /// Cookie to send with the request (format: name=value); can be given multiple times
        #[arg(short, long)]
        cookie: Vec<String>,
        /// Custom HTTP header (format: "Name: Value"); can be given multiple times
        #[arg(short = 'H', long)]
        header: Vec<String>,
        /// Polite delay between consecutive requests in milliseconds
        #[arg(long)]
        delay: Option<u64>,
        /// Keep <header> tags in output (stripped by default)
        #[arg(long)]
        keep_header: bool,
        /// Cache TTL in seconds (0 = disabled, default: 0)
        #[arg(long)]
        cache_ttl: Option<u64>,
        /// Extract only main content from <article>, <main>, or [role=main] elements
        #[arg(long)]
        main_content: bool,
        /// Output directory to write Markdown files (default: stdout)
        #[arg(short, long)]
        output: Option<String>,
        /// Prepend YAML frontmatter (metadata) to each Markdown output
        #[arg(long)]
        frontmatter: bool,
        /// CSS-like selector to exclude HTML elements (e.g. `.ad`, `#sidebar`); can be given multiple times
        #[arg(long)]
        exclude_selector: Vec<String>,
        /// Execute inline <script> blocks via the built-in JS interpreter and fold document.write output into the page
        #[arg(long)]
        javascript: bool,
        /// Post-load wait in milliseconds before processing (also caps timer callback delay)
        #[arg(long)]
        wait: Option<u64>,
        /// Disable URL blacklist filtering for ads/tracking pixels
        #[arg(long)]
        no_blacklist: bool,
        /// Ignore robots.txt disallow rules and crawl-delay
        #[arg(long)]
        ignore_robots: bool,
        /// Additional blacklist pattern file (one host or path pattern per line)
        #[arg(long)]
        blacklist_file: Vec<String>,
        /// Do not load ~/.web2md/blacklist.txt
        #[arg(long)]
        no_user_blacklist: bool,
    },
}

fn apply_blacklist_options(
    options: &mut BrowserOptions,
    no_blacklist: bool,
    no_user_blacklist: bool,
    blacklist_file: Vec<String>,
) {
    options.filter_blacklisted_urls = !no_blacklist;
    options.load_user_blacklist = !no_user_blacklist;
    options.extra_blacklist_files = blacklist_file;
}

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();

    match cli.command {
        None => {
            if let Some(url) = cli.url {
                let options = BrowserOptions::default();
                browse_loop(url, options, false, false, false).await?;
            } else {
                Cli::parse_from(["web2md", "--help"]);
            }
        }
        Some(Commands::Fetch {
            url,
            max_length,
            timeout,
            include_images,
            cookie,
            header,
            format,
            render,
            delay,
            keep_header,
            cache_ttl,
            main_content,
            output: output_file,
            frontmatter,
            exclude_selector,
            javascript,
            wait,
            no_blacklist,
            depth,
            ignore_robots,
            blacklist_file,
            no_user_blacklist,
        }) => {
            let mut options = BrowserOptions::default();
            if let Some(secs) = timeout {
                options.timeout = Duration::from_secs(secs);
            }
            if let Some(ms) = delay {
                options.request_delay = Duration::from_millis(ms);
            }
            if let Some(ms) = wait {
                options.post_load_wait = Duration::from_millis(ms);
            }
            if let Some(secs) = cache_ttl {
                options.cache_ttl = Duration::from_secs(secs);
            }
            options.cookies = cookie;
            options.headers = header;
            options.enable_javascript = javascript;
            apply_blacklist_options(&mut options, no_blacklist, no_user_blacklist, blacklist_file);
            options.respect_robots_txt = !ignore_robots;
            let browser = Browser::new(options)?;

            if depth > 0 {
                if !matches!(format, OutputFormat::Markdown) {
                    anyhow::bail!("--depth requires markdown output format");
                }
                crawl_fetch(
                    &browser,
                    &url,
                    depth,
                    max_length,
                    include_images,
                    keep_header,
                    main_content,
                    frontmatter,
                    &exclude_selector,
                    output_file.as_deref(),
                    render,
                )
                .await?;
            } else {
                let html = browser.fetch(&url).await?;
                let html = browser.prepare_html(&html, &url).await?;

                let mut result = match format {
                    OutputFormat::Markdown => {
                        let md = PageToMarkdown::convert(&html, include_images, keep_header, main_content, &exclude_selector)?;
                        let md = PageToMarkdown::absolutize_links(&md, &url);
                        if render {
                            render_markdown_ansi(&md, false).0
                        } else {
                            md
                        }
                    }
                    OutputFormat::Html => html.clone(),
                    OutputFormat::Json => {
                        let md = PageToMarkdown::convert(&html, include_images, keep_header, main_content, &exclude_selector)?;
                        let md = PageToMarkdown::absolutize_links(&md, &url);
                        let meta = extract_metadata(&html);
                        let output = CliJsonOutput {
                            markdown: md,
                            title: meta.title,
                            description: meta.description,
                            author: meta.author,
                            published_date: meta.published_date,
                            image: meta.image,
                            headline: meta.headline,
                            site_name: meta.site_name,
                            keywords: meta.keywords,
                            excerpt: meta.excerpt,
                            canonical_url: meta.canonical_url,
                            language: meta.language,
                        };
                        serde_json::to_string_pretty(&output)?
                    }
                    OutputFormat::Text => {
                        let md = PageToMarkdown::convert(&html, include_images, keep_header, main_content, &exclude_selector)?;
                        let md = PageToMarkdown::absolutize_links(&md, &url);
                        PageToMarkdown::to_plain_text(&md)
                    }
                };

                if frontmatter && matches!(format, OutputFormat::Markdown | OutputFormat::Text) {
                    let meta = extract_metadata(&html);
                    if let Some(fm) = meta.to_frontmatter(Some(&url)) {
                        result = format!("{}{}", fm, result);
                    }
                }

                if let Some(max) = max_length {
                    if result.len() > max {
                        result = format!("{}\n\n[truncated]", &result[..max]);
                    }
                }

                if let Some(path) = output_file {
                    std::fs::write(&path, &result)?;
                    eprintln!("Written to {}", path);
                } else {
                    println!("{}", result);
                }
            }
        }
        Some(Commands::Browse {
            url,
            timeout,
            include_images,
            cookie,
            header,
            delay,
            keep_header,
            cache_ttl,
            main_content,
            javascript,
            wait,
            no_blacklist,
            ignore_robots,
            blacklist_file,
            no_user_blacklist,
        }) => {
            let mut options = BrowserOptions::default();
            if let Some(secs) = timeout {
                options.timeout = Duration::from_secs(secs);
            }
            if let Some(ms) = delay {
                options.request_delay = Duration::from_millis(ms);
            }
            if let Some(ms) = wait {
                options.post_load_wait = Duration::from_millis(ms);
            }
            if let Some(secs) = cache_ttl {
                options.cache_ttl = Duration::from_secs(secs);
            }
            options.cookies = cookie;
            options.headers = header;
            options.enable_javascript = javascript;
            apply_blacklist_options(&mut options, no_blacklist, no_user_blacklist, blacklist_file);
            options.respect_robots_txt = !ignore_robots;
            browse_loop(url, options, include_images, keep_header, main_content).await?;
        }
        Some(Commands::Mcp) => {
            let server = McpServer::new()?;
            run_stdio_mcp(&server).await?;
        }
        Some(Commands::Sitemap {
            url,
            timeout,
            cookie,
            header,
            feeds,
        }) => {
            let mut options = BrowserOptions::default();
            if let Some(secs) = timeout {
                options.timeout = Duration::from_secs(secs);
            }
            options.cookies = cookie;
            options.headers = header;
            let browser = Browser::new(options)?;

            let parsed = Url::parse(&url).context("Invalid URL")?;
            let sitemap_url = format!("{}://{}/sitemap.xml", parsed.scheme(), parsed.host_str().unwrap_or(""));

            let mut found_urls: Vec<String> = Vec::new();

            // Try fetching sitemap.xml
            match browser.fetch(&sitemap_url).await {
                Ok(xml) => {
                    let sitemap_urls: Vec<String> = parse_sitemap_urls(&xml)
                        .into_iter()
                        .filter(|u| !browser.is_url_blocked(u))
                        .collect();
                    if !sitemap_urls.is_empty() {
                        println!("# Sitemap URLs from {}\n", sitemap_url);
                        for u in &sitemap_urls {
                            println!("{}", u);
                        }
                        found_urls.extend(sitemap_urls);
                    }
                }
                Err(e) => {
                    eprintln!("No sitemap.xml found: {}", e);
                }
            }

            // Optionally check the HTML page for feed links
            if feeds {
                match browser.fetch(&url).await {
                    Ok(html) => {
                        let feed_urls = extract_feed_links(&html);
                        if !feed_urls.is_empty() {
                            println!("\n# Feed links from {}\n", url);
                            for f in &feed_urls {
                                println!("{}", f);
                            }
                            found_urls.extend(feed_urls);
                        }
                    }
                    Err(e) => {
                        eprintln!("Could not fetch page for feed discovery: {}", e);
                    }
                }
            }

            if found_urls.is_empty() {
                eprintln!("No sitemap or feed URLs found.");
            }
        }
        Some(Commands::Batch {
            file,
            timeout,
            include_images,
            cookie,
            header,
            delay,
            keep_header,
            cache_ttl,
            main_content,
            output: output_dir,
            frontmatter,
            exclude_selector,
            javascript,
            wait,
            no_blacklist,
            ignore_robots,
            blacklist_file,
            no_user_blacklist,
        }) => {
            let content = std::fs::read_to_string(&file)
                .context("Failed to read batch file")?;
            let urls: Vec<String> = content
                .lines()
                .map(|l| l.trim())
                .filter(|l| !l.is_empty() && !l.starts_with('#'))
                .map(|l| l.to_string())
                .collect();

            if urls.is_empty() {
                eprintln!("No URLs found in {}", file);
                return Ok(());
            }

            let mut options = BrowserOptions::default();
            if let Some(secs) = timeout {
                options.timeout = Duration::from_secs(secs);
            }
            if let Some(ms) = delay {
                options.request_delay = Duration::from_millis(ms);
            }
            if let Some(ms) = wait {
                options.post_load_wait = Duration::from_millis(ms);
            }
            if let Some(secs) = cache_ttl {
                options.cache_ttl = Duration::from_secs(secs);
            }
            options.cookies = cookie;
            options.headers = header;
            options.enable_javascript = javascript;
            apply_blacklist_options(&mut options, no_blacklist, no_user_blacklist, blacklist_file);
            options.respect_robots_txt = !ignore_robots;
            let browser = Browser::new(options)?;

            // Create output directory if specified
            if let Some(ref dir) = output_dir {
                std::fs::create_dir_all(dir)?;
            }

            let total = urls.len();
            let mut succeeded = 0;
            let mut failed = 0;
            let mut skipped = 0;

            for (i, url) in urls.iter().enumerate() {
                eprintln!("[{}/{}] {}", i + 1, total, url);

                if browser.is_url_blocked(url) {
                    eprintln!("  Skipped (blacklisted URL)");
                    skipped += 1;
                    continue;
                }

                if !browser.robots_allows(url).await? {
                    eprintln!("  Skipped (robots.txt)");
                    skipped += 1;
                    continue;
                }

                match browser.fetch(url).await {
                    Ok(html) => {
                        let html = match browser.prepare_html(&html, url).await {
                            Ok(prepared) => prepared,
                            Err(_) => html,
                        };
                        match PageToMarkdown::convert(&html, include_images, keep_header, main_content, &exclude_selector) {
                            Ok(md) => {
                                let md = PageToMarkdown::absolutize_links(&md, url);
                                let md = if frontmatter {
                                    let meta = extract_metadata(&html);
                                    if let Some(fm) = meta.to_frontmatter(Some(url)) {
                                        format!("{}{}", fm, md)
                                    } else {
                                        md
                                    }
                                } else {
                                    md
                                };
                                if let Some(ref dir) = output_dir {
                                    let filename = url_to_filename(url);
                                    let path = format!("{}/{}", dir, filename);
                                    std::fs::write(&path, &md)?;
                                    eprintln!("{}", path);
                                } else {
                                    println!("---\n# {}\n\n{}", url, md);
                                }
                                succeeded += 1;
                            }
                            Err(e) => {
                                eprintln!("  Error converting: {}", e);
                                failed += 1;
                            }
                        }
                    }
                    Err(e) => {
                        eprintln!("  Error fetching: {}", e);
                        failed += 1;
                    }
                }
            }

            eprintln!("\nDone: {}/{} succeeded, {} failed, {} skipped", succeeded, total, failed, skipped);
        }
    }

    Ok(())
}

/// Recursively fetch and convert same-origin pages up to `depth` link hops.
async fn crawl_fetch(
    browser: &Browser,
    start_url: &str,
    depth: u32,
    max_length: Option<usize>,
    include_images: bool,
    keep_header: bool,
    main_content: bool,
    frontmatter: bool,
    exclude_selector: &[String],
    output_dir: Option<&str>,
    render: bool,
) -> Result<()> {
    let root = Url::parse(start_url).context("Invalid URL")?;
    let start = normalize_crawl_url(start_url, start_url)
        .unwrap_or_else(|| start_url.to_string());

    if let Some(dir) = output_dir {
        std::fs::create_dir_all(dir)?;
    }

    let mut visited = HashSet::new();
    let mut queue = VecDeque::from([(start.clone(), 0u32)]);
    let mut succeeded = 0usize;
    let mut failed = 0usize;
    let mut skipped = 0usize;

    while let Some((url, level)) = queue.pop_front() {
        let key = normalize_crawl_url(&url, &url).unwrap_or_else(|| url.clone());
        if !visited.insert(key) {
            continue;
        }

        if browser.is_url_blocked(&url) {
            eprintln!("Skipped (blacklisted): {}", url);
            skipped += 1;
            continue;
        }

        if !browser.robots_allows(&url).await? {
            eprintln!("Skipped (robots.txt): {}", url);
            skipped += 1;
            continue;
        }

        eprintln!("[depth {}] {}", level, url);

        match browser.fetch(&url).await {
            Ok(html) => {
                let html = match browser.prepare_html(&html, &url).await {
                    Ok(prepared) => prepared,
                    Err(_) => html,
                };

                if level < depth {
                    for link in browser.same_origin_links(&html, &url, &root) {
                        let link_key =
                            normalize_crawl_url(&link, &link).unwrap_or(link.clone());
                        if !visited.contains(&link_key) {
                            queue.push_back((link, level + 1));
                        }
                    }
                }

                match PageToMarkdown::convert(
                    &html,
                    include_images,
                    keep_header,
                    main_content,
                    exclude_selector,
                ) {
                    Ok(md) => {
                        let mut md = PageToMarkdown::absolutize_links(&md, &url);
                        if frontmatter {
                            let meta = extract_metadata(&html);
                            if let Some(fm) = meta.to_frontmatter(Some(&url)) {
                                md = format!("{}{}", fm, md);
                            }
                        }
                        if let Some(max) = max_length {
                            if md.len() > max {
                                md = format!("{}\n\n[truncated]", &md[..max]);
                            }
                        }
                        if render {
                            md = render_markdown_ansi(&md, false).0;
                        }

                        if let Some(dir) = output_dir {
                            let filename = url_to_filename(&url);
                            let path = format!("{}/{}", dir, filename);
                            std::fs::write(&path, &md)?;
                            eprintln!("{}", path);
                        } else {
                            println!("---\n# {}\n\n{}", url, md);
                        }
                        succeeded += 1;
                    }
                    Err(e) => {
                        eprintln!("  Error converting: {}", e);
                        failed += 1;
                    }
                }
            }
            Err(e) => {
                eprintln!("  Error fetching: {}", e);
                failed += 1;
            }
        }
    }

    eprintln!(
        "\nCrawl done: {} succeeded, {} failed, {} skipped",
        succeeded, failed, skipped
    );
    Ok(())
}

/// Convert a URL to a safe filename for batch output.
/// e.g. "https://example.com/blog/post" → "example.com_blog_post.md"
fn url_to_filename(url: &str) -> String {
    let parsed = match Url::parse(url) {
        Ok(u) => u,
        Err(_) => return format!("{}.md", url.replace(['/', ':', '?', '=', '&'], "_")),
    };
    let host = parsed.host_str().unwrap_or("unknown");
    let path = parsed.path().trim_start_matches('/');
    let path = if path.is_empty() { "index" } else { path };
    let path = path.replace(['/', '?', '=', '&'], "_");
    format!("{}_{}.md", host, path)
}

/// Interactive Lynx-like browser loop.
async fn browse_loop(start_url: String, options: BrowserOptions, include_images: bool, keep_header: bool, main_content: bool) -> Result<()> {
    let mut history = vec![start_url];
    let mut current = 0;
    let stdin = io::stdin();
    let mut stdin_lock = stdin.lock();
    let browser = Browser::new(options)?;

    loop {
        let url = history[current].clone();

        // Clear screen + header bar
        print!("\x1b[2J\x1b[H");
        println!("\x1b[7m WEB2MD \x1b[0m \x1b[90m{}\x1b[0m\n", url);
        io::stdout().flush()?;

        print!("\x1b[90mFetching...\x1b[0m");
        io::stdout().flush()?;

        let html = match browser.fetch(&url).await {
            Ok(h) => match browser.prepare_html(&h, &url).await {
                Ok(prepared) => prepared,
                Err(_) => h,
            },
            Err(e) => {
                println!("\r\x1b[2K\x1b[91mError: {}\x1b[0m", e);
                println!("\nPress Enter to continue...");
                let mut _buf = String::new();
                let _ = stdin_lock.read_line(&mut _buf);
                continue;
            }
        };

        print!("\r\x1b[2K\x1b[90mConverting...\x1b[0m");
        io::stdout().flush()?;

        let mut renderer = AnsiRenderer::new(true);
        let page_url = url.clone();
        let mut first_block = true;
        PageToMarkdown::convert_progressive(
            &html,
            include_images,
            keep_header,
            main_content,
            &[],
            |block| {
                if first_block {
                    print!("\r\x1b[2K");
                    first_block = false;
                }
                let block = PageToMarkdown::absolutize_links(&block, &page_url);
                let rendered = renderer.render_chunk(&block);
                let trimmed = rendered.trim_end();
                if !trimmed.is_empty() {
                    print!("{trimmed}\n");
                }
                let _ = io::stdout().flush();
            },
        )?;

        let links = renderer.into_links();

        println!(
            "\n\x1b[90m[q]uit [b]ack [f]orward [u]rl [1-{}] follow link\x1b[0m",
            links.len()
        );
        print!("\x1b[1m> \x1b[0m");
        io::stdout().flush()?;

        let mut input = String::new();
        stdin_lock.read_line(&mut input)?;
        let input = input.trim();

        match input {
            "q" | "Q" => break,
            "b" | "B" => {
                if current > 0 {
                    current -= 1;
                }
            }
            "f" | "F" => {
                if current < history.len() - 1 {
                    current += 1;
                }
            }
            "u" | "U" => {
                print!("URL: ");
                io::stdout().flush()?;
                let mut new_url = String::new();
                stdin_lock.read_line(&mut new_url)?;
                let new_url = new_url.trim().to_string();
                if !new_url.is_empty() {
                    history.truncate(current + 1);
                    history.push(new_url);
                    current += 1;
                }
            }
            num => {
                if let Ok(n) = num.parse::<usize>() {
                    if n > 0 && n <= links.len() {
                        let target = resolve_url(&url, &links[n - 1]);
                        history.truncate(current + 1);
                        history.push(target);
                        current += 1;
                    }
                }
            }
        }
    }

    Ok(())
}

/// Resolve a relative URL against a base URL.
fn resolve_url(base: &str, relative: &str) -> String {
    if relative.starts_with("http://") || relative.starts_with("https://") {
        return relative.to_string();
    }
    if relative.starts_with("//") {
        if let Some(prefix) = base.split("://").next() {
            return format!("{}:{}", prefix, relative);
        }
        return relative.to_string();
    }
    if let Ok(base_url) = url::Url::parse(base) {
        if let Ok(resolved) = base_url.join(relative) {
            return resolved.to_string();
        }
    }
    relative.to_string()
}

/// Incremental ANSI Markdown renderer for progressive browse output.
struct AnsiRenderer {
    link_counter: usize,
    links: Vec<String>,
    number_links: bool,
    out: String,
    pending_link: Option<(usize, String)>,
    in_table: bool,
    table_rows: Vec<Vec<String>>,
    current_row: Vec<String>,
    current_cell: String,
    col_alignments: Vec<pulldown_cmark::Alignment>,
    _in_header: bool,
}

impl AnsiRenderer {
    fn new(number_links: bool) -> Self {
        Self {
            link_counter: 0,
            links: Vec::new(),
            number_links,
            out: String::new(),
            pending_link: None,
            in_table: false,
            table_rows: Vec::new(),
            current_row: Vec::new(),
            current_cell: String::new(),
            col_alignments: Vec::new(),
            _in_header: false,
        }
    }

    fn render_chunk(&mut self, md: &str) -> String {
        use pulldown_cmark::{Event, Options, Tag, TagEnd};

        self.out.clear();
        let mut opts = Options::empty();
        opts.insert(Options::ENABLE_TABLES);
        let parser = pulldown_cmark::Parser::new_ext(md, opts);

        for event in parser {
            match event {
                Event::Start(tag) => match tag {
                    Tag::Heading { level, .. } => {
                        let c = match level {
                            pulldown_cmark::HeadingLevel::H1 => "\x1b[1;91m",
                            pulldown_cmark::HeadingLevel::H2 => "\x1b[1;93m",
                            pulldown_cmark::HeadingLevel::H3 => "\x1b[1;92m",
                            pulldown_cmark::HeadingLevel::H4 => "\x1b[1;94m",
                            pulldown_cmark::HeadingLevel::H5 => "\x1b[1;95m",
                            pulldown_cmark::HeadingLevel::H6 => "\x1b[1;96m",
                        };
                        self.out.push_str(c);
                    }
                    Tag::Strong => self.out.push_str("\x1b[1m"),
                    Tag::Emphasis => self.out.push_str("\x1b[3m"),
                    Tag::Link { dest_url, .. } => {
                        if self.number_links && !self.in_table {
                            self.link_counter += 1;
                            self.pending_link = Some((self.link_counter, dest_url.to_string()));
                        }
                        if self.in_table {
                            self.current_cell.push_str("\x1b[4;36m");
                        } else {
                            self.out.push_str("\x1b[4;36m");
                        }
                    }
                    Tag::BlockQuote(_) => self.out.push_str("\x1b[90m▌ \x1b[3m"),
                    Tag::CodeBlock(_) => self.out.push_str("\x1b[48;5;235;38;5;250m"),
                    Tag::List(_) => {}
                    Tag::Item => self.out.push_str(""),
                    Tag::Table(aligns) => {
                        self.in_table = true;
                        self.col_alignments = aligns.to_vec();
                    }
                    Tag::TableHead => self._in_header = true,
                    Tag::TableRow => self.current_row = Vec::new(),
                    Tag::TableCell => self.current_cell.clear(),
                    _ => {}
                },
                Event::End(tag) => match tag {
                    TagEnd::Heading(_) => self.out.push_str("\x1b[0m\n"),
                    TagEnd::Paragraph => {
                        if !self.in_table {
                            self.out.push('\n');
                        }
                    }
                    TagEnd::Strong | TagEnd::Emphasis => {
                        if self.in_table {
                            self.current_cell.push_str("\x1b[0m");
                        } else {
                            self.out.push_str("\x1b[0m");
                        }
                    }
                    TagEnd::Link => {
                        if self.in_table {
                            self.current_cell.push_str("\x1b[0m");
                        } else {
                            if let Some((n, url)) = self.pending_link.take() {
                                self.links.push(url.clone());
                                self.out
                                    .push_str(&format!("\x1b[33m[{}]\x1b[0m ", n));
                                self.out.push_str(&fallback_link_label(&url));
                            }
                            self.out.push_str("\x1b[0m");
                        }
                    }
                    TagEnd::BlockQuote(_) => self.out.push_str("\x1b[0m\n"),
                    TagEnd::CodeBlock => self.out.push_str("\x1b[0m\n"),
                    TagEnd::Item => {}
                    TagEnd::TableCell => {
                        self.current_row.push(std::mem::take(&mut self.current_cell));
                    }
                    TagEnd::TableRow => {
                        self.table_rows.push(std::mem::take(&mut self.current_row));
                    }
                    TagEnd::TableHead => {
                        self._in_header = false;
                        if !self.current_row.is_empty() {
                            self.table_rows.push(std::mem::take(&mut self.current_row));
                        }
                    }
                    TagEnd::Table => {
                        self.in_table = false;
                        self.out.push_str(&render_ansi_table(
                            &self.table_rows,
                            &self.col_alignments,
                        ));
                        self.table_rows.clear();
                        self.col_alignments.clear();
                    }
                    _ => {}
                },
                Event::Text(text) => {
                    if self.in_table {
                        self.current_cell.push_str(&text);
                    } else if let Some((n, url)) = self.pending_link.take() {
                        self.links.push(url);
                        self.out
                            .push_str(&format!("\x1b[33m[{}]\x1b[0m ", n));
                        self.out.push_str(&text);
                    } else {
                        self.out.push_str(&text);
                    }
                }
                Event::Code(code) => {
                    let s = format!("\x1b[38;5;250m{}\x1b[0m", code);
                    if self.in_table {
                        self.current_cell.push_str(&s);
                    } else {
                        self.out.push_str(&s);
                    }
                }
                Event::Html(html) => {
                    if self.in_table {
                        self.current_cell.push_str(&html);
                    } else {
                        self.out.push_str(&html);
                    }
                }
                Event::SoftBreak => {
                    if self.in_table {
                        self.current_cell.push(' ');
                    } else {
                        self.out.push(' ');
                    }
                }
                Event::HardBreak => {
                    if self.in_table {
                        self.current_cell.push('\n');
                    } else {
                        self.out.push('\n');
                    }
                }
                Event::Rule => {
                    self.out.push_str(
                        "\x1b[90m────────────────────────────────────────\x1b[0m\n",
                    );
                }
                _ => {}
            }
        }

        self.out = fix_raw_links(
            &self.out,
            self.number_links,
            &mut self.link_counter,
            &mut self.links,
        );
        std::mem::take(&mut self.out)
    }

    fn into_links(self) -> Vec<String> {
        self.links
    }
}

/// Render Markdown with ANSI escape codes for terminal display.
/// Markdown syntax is stripped; visual effects (bold, color, underline) replace it.
fn render_markdown_ansi(md: &str, number_links: bool) -> (String, Vec<String>) {
    let mut renderer = AnsiRenderer::new(number_links);
    let rendered = renderer.render_chunk(md);
    (rendered, renderer.into_links())
}

/// Display label for links with no visible anchor text.
fn fallback_link_label(url: &str) -> String {
    if let Ok(parsed) = url::Url::parse(url) {
        if let Some(segments) = parsed.path_segments() {
            if let Some(seg) = segments.filter(|s| !s.is_empty()).last() {
                return seg.replace('-', " ");
            }
        }
        if let Some(host) = parsed.host_str() {
            return host.to_string();
        }
    }
    url.to_string()
}

/// Strip ANSI escape sequences from a string to get the visual width.
fn strip_ansi(s: &str) -> String {
    let mut out = String::new();
    let mut in_escape = false;
    for c in s.chars() {
        if c == '\x1b' {
            in_escape = true;
            continue;
        }
        if in_escape {
            if c.is_ascii_alphabetic() {
                in_escape = false;
            }
            continue;
        }
        out.push(c);
    }
    out
}

/// Compute visual width of a string (ANSI codes excluded).
fn visual_width(s: &str) -> usize {
    strip_ansi(s).chars().count()
}

/// Pad a string to target visual width, preserving any ANSI prefixes/suffixes.
fn pad_visual(s: &str, width: usize, align: &pulldown_cmark::Alignment) -> String {
    let stripped = strip_ansi(s);
    let stripped_len = stripped.chars().count();
    if stripped_len >= width {
        return s.to_string();
    }
    let pad = width - stripped_len;
    match align {
        pulldown_cmark::Alignment::Right => format!("{}{}", " ".repeat(pad), s),
        pulldown_cmark::Alignment::Center => {
            let left = pad / 2;
            let right = pad - left;
            format!("{}{}{}", " ".repeat(left), s, " ".repeat(right))
        }
        _ => format!("{}{}", s, " ".repeat(pad)),
    }
}

/// Render buffered table rows as an ANSI-styled box-drawing table.
fn render_ansi_table(rows: &[Vec<String>], aligns: &[pulldown_cmark::Alignment]) -> String {
    if rows.is_empty() {
        return String::new();
    }
    let cols = rows.iter().map(|r| r.len()).max().unwrap_or(0);
    if cols == 0 {
        return String::new();
    }

    let mut widths = vec![0usize; cols];
    for row in rows {
        for (i, cell) in row.iter().enumerate() {
            widths[i] = widths[i].max(visual_width(cell));
        }
    }
    for w in &mut widths {
        *w = (*w).max(1);
    }

    let mut out = String::new();

    // Top border
    out.push_str("\x1b[90m┌");
    for (i, w) in widths.iter().enumerate() {
        out.push_str(&"".repeat(w + 2));
        if i < widths.len() - 1 {
            out.push('');
        }
    }
    out.push_str("\x1b[0m\n");

    for (ri, row) in rows.iter().enumerate() {
        let is_header = ri == 0 && row.len() == cols;
        out.push_str("\x1b[90m│\x1b[0m ");
        for ci in 0..cols {
            let cell = row.get(ci).map(|s| s.as_str()).unwrap_or("");
            let align = aligns.get(ci).unwrap_or(&pulldown_cmark::Alignment::None);
            let padded = pad_visual(cell, widths[ci], align);
            if is_header {
                out.push_str("\x1b[1m");
                out.push_str(&padded);
                out.push_str("\x1b[0m");
            } else {
                out.push_str(&padded);
            }
            out.push_str(" \x1b[90m│\x1b[0m ");
        }
        out.push('\n');

        // Separator after header
        if is_header && rows.len() > 1 {
            out.push_str("\x1b[90m├");
            for (i, w) in widths.iter().enumerate() {
                out.push_str(&"".repeat(w + 2));
                if i < widths.len() - 1 {
                    out.push('');
                }
            }
            out.push_str("\x1b[0m\n");
        }
    }

    // Bottom border
    out.push_str("\x1b[90m└");
    for (i, w) in widths.iter().enumerate() {
        out.push_str(&"".repeat(w + 2));
        if i < widths.len() - 1 {
            out.push('');
        }
    }
    out.push_str("\x1b[0m\n");

    out
}

/// Post-process rendered output to catch raw `[text](url)` Markdown link patterns
/// that pulldown-cmark didn't parse as Link events (e.g., multi-line links from HTML conversion).
fn fix_raw_links(
    text: &str,
    number_links: bool,
    counter: &mut usize,
    links: &mut Vec<String>,
) -> String {
    let mut result = String::with_capacity(text.len());
    let chars: Vec<char> = text.chars().collect();
    let mut i = 0;

    while i < chars.len() {
        if chars[i] == '[' {
            // Skip images: ![alt](url)
            let is_image = i > 0 && chars[i - 1] == '!';
            if !is_image {
                let text_start = i + 1;
                let mut j = text_start;
                let mut bracket_depth = 1;

                while j < chars.len() && bracket_depth > 0 {
                    match chars[j] {
                        '[' => bracket_depth += 1,
                        ']' => bracket_depth -= 1,
                        _ => {}
                    }
                    j += 1;
                }

                if bracket_depth == 0 {
                    let link_text_end = j - 1;
                    if j < chars.len() && chars[j] == '(' {
                        let url_start = j + 1;
                        let mut k = url_start;
                        while k < chars.len() && chars[k] != ')' {
                            k += 1;
                        }
                        if k < chars.len() && chars[k] == ')' {
                            let link_text: String = chars[text_start..link_text_end].iter().collect();
                            let trimmed = link_text.trim();
                            let url: String = chars[url_start..k].iter().collect();
                            let url_trimmed = url.trim();
                            let looks_like_url = url_trimmed.contains('.')
                                || url_trimmed.contains("://")
                                || url_trimmed.starts_with('/');
                            if looks_like_url
                                && (trimmed.is_empty()
                                    || !trimmed.chars().all(|c| c.is_ascii_digit()))
                            {
                                let display = if trimmed.is_empty() {
                                    fallback_link_label(url_trimmed)
                                } else {
                                    trimmed.to_string()
                                };
                                if number_links {
                                    *counter += 1;
                                    links.push(url_trimmed.to_string());
                                    result.push_str(&format!("\x1b[33m[{}]\x1b[0m ", *counter));
                                }
                                result.push_str("\x1b[4;36m");
                                result.push_str(&display);
                                result.push_str("\x1b[0m");
                                i = k + 1;
                                continue;
                            }
                        }
                    }
                }
            }
        }

        result.push(chars[i]);
        i += 1;
    }

    result
}

/// Minimal stdio JSON-RPC loop for MCP
async fn run_stdio_mcp(server: &McpServer) -> Result<()> {
    use std::io::{self, BufRead};

    let stdin = io::stdin();
    for line in stdin.lock().lines() {
        let line = line?;
        let req: McpRequest = match serde_json::from_str(&line) {
            Ok(r) => r,
            Err(e) => {
                eprintln!("{{\"error\":\"{}\"}}", e);
                continue;
            }
        };

        match server.handle(req).await {
            Ok(resp) => {
                println!("{}", serde_json::to_string(&resp)?);
            }
            Err(e) => {
                eprintln!("{{\"error\":\"{}\"}}", e);
            }
        }
    }

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn resolve_url_absolute_unchanged() {
        assert_eq!(resolve_url("https://ibm.com", "https://example.com"), "https://example.com");
    }

    #[test]
    fn resolve_url_relative_joined() {
        assert_eq!(resolve_url("https://ibm.com/page", "/about"), "https://ibm.com/about");
        assert_eq!(resolve_url("https://ibm.com/page/", "about"), "https://ibm.com/page/about");
    }

    #[test]
    fn resolve_url_protocol_relative() {
        assert_eq!(resolve_url("https://ibm.com", "//cdn.com/file.js"), "https://cdn.com/file.js");
    }

    #[test]
    fn fix_raw_links_renders_multiline_links() {
        let input = "[\nExplore IBM\n~90%\nfaster\n](https://ibm.com)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, false, &mut counter, &mut links);
        assert!(output.contains("Explore IBM"));
        assert!(output.contains("~90%"));
        assert!(output.contains("faster"));
        assert!(!output.contains("]("));
        assert!(!output.contains("https://ibm.com"));
        assert!(output.contains("\x1b[4;36m"));
    }

    #[test]
    fn fix_raw_links_numbers_raw_links() {
        let input = "[\nExplore IBM\n](https://ibm.com)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, true, &mut counter, &mut links);
        assert_eq!(counter, 1);
        assert_eq!(links, vec!["https://ibm.com"]);
        assert!(output.contains("\x1b[33m[1]\x1b[0m"));
        assert!(output.contains("\x1b[4;36m"));
    }

    #[test]
    fn fix_raw_links_skips_plain_brackets() {
        let input = "Some [text] without a link";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, false, &mut counter, &mut links);
        assert_eq!(output, "Some [text] without a link");
    }

    #[test]
    fn fix_raw_links_labels_empty_url_links() {
        let input = "[](https://example.com/case-studies/wimbledon)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, true, &mut counter, &mut links);
        assert_eq!(counter, 1);
        assert_eq!(links, vec!["https://example.com/case-studies/wimbledon"]);
        assert!(output.contains("wimbledon"));
    }

    #[test]
    fn fix_raw_links_skips_empty_href() {
        let input = "[not a url]()";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, false, &mut counter, &mut links);
        assert_eq!(output, "[not a url]()");
    }

    #[test]
    fn fix_raw_links_skips_images() {
        let input = "![alt text](https://example.com/img.png)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, true, &mut counter, &mut links);
        assert_eq!(counter, 0);
        assert_eq!(output, "![alt text](https://example.com/img.png)");
    }

    #[test]
    fn fix_raw_links_skips_digit_only_text() {
        let input = "[1](https://example.com) [42](https://ibm.com)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, true, &mut counter, &mut links);
        assert_eq!(counter, 0);
        assert_eq!(output, "[1](https://example.com) [42](https://ibm.com)");
    }

    #[test]
    fn fix_raw_links_skips_non_url() {
        let input = "[note](see below)";
        let mut counter = 0;
        let mut links = Vec::new();
        let output = fix_raw_links(input, true, &mut counter, &mut links);
        assert_eq!(counter, 0);
        assert_eq!(output, "[note](see below)");
    }

    #[test]
    fn render_markdown_ansi_table() {
        let md = "| Name | Age |\n|------|-----|\n| Alice | 30 |\n| Bob | 25 |";
        let (output, _) = render_markdown_ansi(md, false);
        assert!(output.contains(""), "missing top-left corner");
        assert!(output.contains(""), "missing top-right corner");
        assert!(output.contains(""), "missing bottom-left corner");
        assert!(output.contains(""), "missing bottom-right corner");
        assert!(output.contains(""), "missing vertical bar");
        assert!(output.contains("Name"), "missing Name header");
        assert!(output.contains("Age"), "missing Age header");
        assert!(output.contains("Alice"), "missing Alice");
        assert!(output.contains("Bob"), "missing Bob");
    }

    #[test]
    fn url_to_filename_basic() {
        let name = url_to_filename("https://example.com/blog/post");
        assert_eq!(name, "example.com_blog_post.md");
    }

    #[test]
    fn url_to_filename_root() {
        let name = url_to_filename("https://example.com/");
        assert_eq!(name, "example.com_index.md");
    }

    #[test]
    fn url_to_filename_with_query() {
        let name = url_to_filename("https://example.com/search?q=rust&page=2");
        assert!(name.starts_with("example.com_search"));
        assert!(name.ends_with(".md"));
    }
}