provenant-cli 0.0.33

Rust-based ScanCode-compatible scanner for licenses, package metadata, SBOMs, and provenance data.
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
// SPDX-FileCopyrightText: Provenant contributors
// SPDX-License-Identifier: Apache-2.0

//! Text preparation and normalization for copyright detection.
//!
//! Normalizes raw text lines before copyright detection:
//! - Copyright symbol normalization (©, (C), ©, etc. → (c))
//! - HTML entity decoding (&, <, >, etc.)
//! - Comment marker removal (/*, */, #, etc.)
//! - Markup stripping (Debian <s></s>, HTML tags)
//! - Quote normalization (backticks, double quotes → single quotes)
//! - Escape handling (\t, \n → spaces)
//! - Punctuation cleanup
//! - Emdash normalization (– → -)
//! - Placeholder removal (<year>, <name>, etc.)

use std::sync::LazyLock;

use regex::Regex;

fn normalize_replacement_chars(s: &str) -> String {
    let chars: Vec<char> = s.chars().collect();
    let mut out = String::with_capacity(s.len());
    for (i, ch) in chars.iter().enumerate() {
        if *ch == '\u{FFFD}' {
            let prev_is_letter = i
                .checked_sub(1)
                .and_then(|j| chars.get(j))
                .is_some_and(|c| c.is_alphabetic());
            let next_is_letter = chars.get(i + 1).is_some_and(|c| c.is_alphabetic());
            if prev_is_letter && next_is_letter {
                out.push(*ch);
            } else {
                out.push(' ');
            }
        } else {
            out.push(*ch);
        }
    }
    out
}

/// Regex to remove C-style printf format codes like ` %s ` or ` #d `.
static PRINTF_FORMAT_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r" [#%][a-zA-Z] ").unwrap());

/// Regex to remove punctuation characters: `*#"%[]{}` and backtick.
static PUNCTUATION_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r#"[*#"%\[\]{}`]+"#).unwrap());

/// Regex to fold consecutive quotes (2+ single quotes → one).
static CONSECUTIVE_QUOTES_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"'{2,}").unwrap());

/// Regex to remove less common comment markers: `rem`, `@rem`, `dnl` at line start.
static WEIRD_COMMENT_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?i)^(@?rem|dnl)\s+").unwrap());

static LEADING_DOUBLE_DASH_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"^\s*--+\s*").unwrap());

/// Regex to remove man page comment markers: `."`.
static MAN_COMMENT_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r#"\.\""#).unwrap());

/// Regex to match angle-bracketed content (excluding email addresses with `@`).
static HTML_TAG_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"<[^>@]+>").unwrap());

/// Regex to strip known HTML tags even without a closing `>`.
/// Covers the most common HTML tags that appear in source files.
/// Python's `split_on_tags` uses `< */? *[a-z]+[a-z0-9@\-\._\+]* */? *>?` which
/// makes `>` optional, allowing malformed tags like `<b `, `<div `, `</a ` to be stripped.
static HTML_TAG_MALFORMED_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(
        r"(?i)<\s*/?\s*(?:a|abbr|address|area|article|aside|audio|b|base|bdi|bdo|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|data|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|embed|fieldset|figcaption|figure|font|footer|form|h[1-6]|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|main|map|mark|menu|meta|meter|nav|noscript|object|ol|optgroup|option|output|p|param|picture|pre|progress|q|rp|rt|ruby|s|samp|script|section|select|slot|small|source|span|strong|style|sub|summary|sup|table|tbody|td|template|textarea|tfoot|th|thead|time|title|tr|track|u|ul|var|video|wbr)\b\s*/?\s*>?",
    )
    .unwrap()
});

static ONE_LETTER_ANGLE_EMAIL_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"<\s*([A-Za-z])@([^>\s]+)\s*>").unwrap());

static ANGLE_EMAIL_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"<\s*(?P<email>[^>\s]*@[^>\s]+)\s*>").unwrap());

static MSO_O_TEMPLATE_TOKEN_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?i)\bo:template\b").unwrap());

static MSO_TEMPLATE_ELEMENT_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?is)<o:template>.*?</o:template>").unwrap());

static MSO_LASTAUTHOR_ELEMENT_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?is)<o:lastauthor>.*?</o:lastauthor>").unwrap());

/// Regex to strip HTML attribute tokens that leak into copyright text.
/// Python's `SKIP_ATTRIBUTES` skips tokens starting with `href=`, `class=`, etc.
static HTML_ATTR_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(
        r"(?i)\b(?:href|class|width|style|xmlns|xml|lang|type|rel|src|alt|id|name|action|method|target|value|placeholder)=[^\s>]*",
    )
    .unwrap()
});

static MAILTO_ANCHOR_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(r#"(?is)<a\s+href=['\"]mailto:([^'\"]+)['\"]\s*>\s*([^<]+?)\s*</a>"#).unwrap()
});

static EMAIL_ANCHOR_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(r#"(?is)<a\s+href=['\"]([^'\"]+@[^'\"]+\.[^'\"]+)['\"][^>]*>\s*([^<]+?)\s*</a>"#)
        .unwrap()
});

static HTTP_ANCHOR_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(r#"(?is)<a\s+href=['\"](https?://[^'\"]+)['\"][^>]*>\s*([^<]+?)\s*</a>"#).unwrap()
});

static TAG_VALUE_ATTR_DQ_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r#"(?is)\bvalue\s*=\s*\"([^\"]+)\""#).unwrap());

static TAG_VALUE_ATTR_SQ_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?is)\bvalue\s*=\s*'([^']+)'").unwrap());

static MAILTO_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r#"(?i)mailto:([^\s\"'>]+)"#).unwrap());

static ANGLE_BRACKET_MARKDOWN_LINK_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"<\[(?P<text>[^\]]+)\]\((?P<url>[^)]+)\)>").unwrap());

static ANGLE_BRACKET_SINGLE_YEAR_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"<\s*(?P<year>\d{4})\s*>").unwrap());

/// Regex to strip CSS measurement artifacts like "0pt" that leak through HTML demarkup.
static CSS_MEASUREMENT_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\b\d+pt\b").unwrap());

static JOIN_REGISTERED_MARK_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?P<head>[A-Za-z0-9])\s+\(r\)").unwrap());

static REGISTERED_SIGN_AFTER_ASCII_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?P<head>[A-Za-z0-9])(?:®|\u{00AE})").unwrap());

static LEADING_JAVADOC_AT_TAG_RE: LazyLock<Regex> = LazyLock::new(|| {
    Regex::new(r"(?i)^\s*@(?:remark|file|brief|details|since|version)\b[:\s]*").unwrap()
});

static ESCAPED_ANGLE_EMAIL_RE: LazyLock<Regex> =
    LazyLock::new(|| Regex::new(r"(?i)&lt;\s*(?P<email>[^\s&<>]+@[^\s&<>]+)\s*&gt;").unwrap());

/// Mirroring Python's `keep_tag()` logic: strip angle-bracketed content only
/// when it looks like an HTML tag. Preserve years, names, URLs, and
/// copyright/author/legal markers.
fn replace_tags_preserving_copyright(text: &str, re: &Regex) -> String {
    re.replace_all(text, |caps: &regex::Captures| {
        let m = caps.get(0).unwrap().as_str();
        if should_keep_angle_bracket_content(m) {
            m.trim_start_matches('<')
                .trim_end_matches('>')
                .trim_start_matches('/')
                .trim()
                .to_string()
        } else {
            " ".to_string()
        }
    })
    .into_owned()
}

fn should_keep_angle_bracket_content(m: &str) -> bool {
    let inner = m
        .trim_start_matches('<')
        .trim_end_matches('>')
        .trim_start_matches('/')
        .trim();
    if inner.is_empty() {
        return false;
    }

    let inner_lower = inner.to_ascii_lowercase();
    if inner_lower.starts_with("o:") {
        return false;
    }
    let inner_simple = inner_lower
        .trim()
        .trim_end_matches('/')
        .trim_end()
        .to_string();

    if inner_simple == "copyright" || inner_simple == "author" || inner_simple == "legal" {
        return true;
    }
    // Preserve years/numeric content: <2013>, <2010-2012>
    if inner.as_bytes()[0].is_ascii_digit() {
        return true;
    }

    if inner.contains('=') {
        return false;
    }

    let lower = m.to_ascii_lowercase();
    if inner_simple.contains("copyright")
        && !inner_simple.contains(' ')
        && !inner_simple.contains(':')
        && !inner_simple.starts_with("copyright")
    {
        return false;
    }
    if lower.contains("copyright") || lower.contains("author") || lower.contains("legal") {
        return true;
    }

    // Preserve URLs/domains in angle brackets: <http://...>, <https://...>, <www...>
    let looks_like_url_or_domain = inner_lower.contains("http://")
        || inner_lower.contains("https://")
        || inner_lower.contains("ftp://")
        || inner_lower.starts_with("www.")
        || inner_lower.starts_with("ftp.");

    let looks_like_email = inner.contains('@') && inner.contains('.');

    let looks_like_obfuscated_email = (inner_lower.contains(" at ")
        || inner_lower.contains(" [at] "))
        && (inner_lower.contains(" dot ")
            || inner_lower.contains(" [dot] ")
            || inner_lower
                .rsplit_once(" at ")
                .map(|(_, tail)| tail.contains('.'))
                .unwrap_or(false)
            || inner_lower
                .rsplit_once(" [at] ")
                .map(|(_, tail)| tail.contains('.'))
                .unwrap_or(false));

    if looks_like_url_or_domain || looks_like_email || looks_like_obfuscated_email {
        return true;
    }

    if inner.contains(' ') {
        let inner_lower = inner.to_ascii_lowercase();
        let ends_with_corp_suffix = inner_lower
            .split_whitespace()
            .last()
            .is_some_and(|w| matches!(w.trim_end_matches('.'), "inc" | "ltd" | "llc" | "corp"));

        if !ends_with_corp_suffix {
            let mut words = inner.split_whitespace();
            let word_count = words.clone().count();
            if (2..=3).contains(&word_count) && inner.len() <= 64 {
                let looks_like_name = words.all(|w| {
                    let mut chars = w.chars();
                    let first = chars.next();
                    let first_ok = first.is_some_and(|c| c.is_alphabetic() && c.is_uppercase());
                    first_ok && chars.all(|c| c.is_alphabetic() || matches!(c, '\'' | '-' | '.'))
                });
                if looks_like_name {
                    return true;
                }
            }
        }
    }

    false
}

/// Prepare a text `line` for copyright detection.
///
/// Applies a sequence of normalizations to clean up raw text before
/// copyright/author detection. This mirrors the Python `prepare_text_line()`
/// function from ScanCode Toolkit.
pub fn prepare_text_line(line: &str) -> String {
    let mut s = line.to_string();

    s.retain(|ch| ch != '\0');

    s = normalize_replacement_chars(&s);

    // ── Man page junk removal ──
    if s.contains("\\\\ co") || s.contains("\\ co") || s.contains("(co ") {
        s = s
            .replace("\\\\ co", " ")
            .replace("\\ co", " ")
            .replace("(co ", " ");
    }

    // Remove printf format codes like ` %s ` or ` #d `
    s = PRINTF_FORMAT_RE.replace_all(&s, " ").into_owned();

    // Remove less common comment markers (rem, @rem, dnl)
    s = WEIRD_COMMENT_RE.replace_all(&s, " ").into_owned();

    s = LEADING_DOUBLE_DASH_RE.replace_all(&s, " ").into_owned();

    // Remove man page comment markers: `."` → space
    s = MAN_COMMENT_RE.replace_all(&s, " ").into_owned();

    // Remove C/C++ block comment markers only (not # and % yet — those
    // would destroy HTML entities like &#169; and printf-like patterns
    // that have already been handled above).
    s = s.replace("/*", " ").replace("*/", " ");

    // ── Copyright symbol normalization ──
    // Must happen BEFORE aggressive # and % removal so that HTML numeric
    // entities (&#169;, &#xa9;, etc.) and backslash escapes (\\XA9) are
    // recognized and converted first.
    s = s
        // RST |copy| directive
        .replace("|copy|", " (c) ")
        // Uncommon pipe chars in ASCII art
        .replace('|', " ")
        // Normalize spacing around "Copyright
        .replace("\"Copyright", "\" Copyright")
        // All copyright sign variants → (c)
        .replace("( C)", " (c) ")
        .replace("(C)", " (c) ")
        .replace("(c)", " (c) ")
        .replace("[C]", " (c) ")
        .replace("[c]", " (c) ")
        .replace("( © )", " (c) ")
        .replace("(©)", " (c) ")
        .replace("(© )", " (c) ")
        .replace("( ©)", " (c) ")
        .replace(['©', '\u{00A9}'], " (c) ")
        // HTML entities
        .replace("&copy;", " (c) ")
        .replace("&copy", " (c) ")
        .replace("&#169;", " (c) ")
        .replace("&#xa9;", " (c) ")
        .replace("&#xA9;", " (c) ")
        .replace("&#Xa9;", " (c) ")
        .replace("&#XA9;", " (c) ")
        // Unicode escape forms
        .replace("u00A9", " (c) ")
        .replace("u00a9", " (c) ")
        // Backslash hex escapes
        .replace("\\XA9", " (c) ")
        .replace("\\A9", " (c) ")
        .replace("\\a9", " (c) ")
        .replace("<A9>", " (c) ")
        .replace("XA9;", " (c) ")
        .replace("Xa9;", " (c) ")
        .replace("xA9;", " (c) ")
        .replace("xa9;", " (c) ")
        // \xc2 is UTF-8 prefix for © — remove it
        .replace('\u{00C2}', "")
        .replace("\\xc2", "");
    s = REGISTERED_SIGN_AFTER_ASCII_RE
        .replace_all(&s, "${head} (r) ")
        .into_owned();
    s = s
        .replace("&reg;", " (r) ")
        .replace("&reg", " (r) ")
        .replace("&#174;", " (r) ");

    // ── HTML entity decoding ──
    // Must also happen BEFORE # and % removal for the same reason.

    if s.to_ascii_lowercase().contains("&lt;") && s.contains('@') {
        s = ESCAPED_ANGLE_EMAIL_RE
            .replace_all(&s, "<${email}>")
            .into_owned();
    }

    s = s
        // Emdash
        .replace('\u{2013}', "-")
        // CR/LF entities
        .replace("&#13;&#10;", " ")
        .replace("&#13;", " ")
        .replace("&#10;", " ")
        // Space entities
        .replace("&nbsp;", " ")
        .replace("&nbsp", " ")
        .replace("&ensp;", " ")
        .replace("&emsp;", " ")
        .replace("&thinsp;", " ")
        // Named entities
        .replace("&quot;", "\"")
        .replace("&#34;", "\"")
        .replace("&auml;", "ä")
        .replace("&auml", "ä")
        .replace("&Auml;", "Ä")
        .replace("&Auml", "Ä")
        .replace("&ouml;", "ö")
        .replace("&ouml", "ö")
        .replace("&Ouml;", "Ö")
        .replace("&Ouml", "Ö")
        .replace("&uuml;", "ü")
        .replace("&uuml", "ü")
        .replace("&Uuml;", "Ü")
        .replace("&Uuml", "Ü")
        .replace("&szlig;", "ß")
        .replace("&szlig", "ß")
        .replace("&#196;", "Ä")
        .replace("&#214;", "Ö")
        .replace("&#220;", "Ü")
        .replace("&#228;", "ä")
        .replace("&#246;", "ö")
        .replace("&#252;", "ü")
        .replace("&#223;", "ß")
        .replace("&#xC4;", "Ä")
        .replace("&#xD6;", "Ö")
        .replace("&#xDC;", "Ü")
        .replace("&#xE4;", "ä")
        .replace("&#xF6;", "ö")
        .replace("&#xFC;", "ü")
        .replace("&#xDF;", "ß")
        .replace("&amp;", "&")
        .replace("&#38;", "&")
        .replace("&gt;", ">")
        .replace("&gt", ">")
        .replace("&#62;", ">")
        .replace("&lt;", "<")
        .replace("&lt", "<")
        .replace("&#60;", "<");

    // Now remove remaining code comment markers (*, #, %) and strip edges.
    // HTML entities have already been decoded so # and % are safe to remove.
    s = s.replace(['*', '#', '%'], " ");
    s = s.trim_matches(|c: char| " \\/*#%;".contains(c)).to_string();

    if (s.contains("<a") || s.contains("href=")) && (s.contains("\\\"") || s.contains("\\'")) {
        s = s.replace("\\\"", "\"").replace("\\'", "'");
    }

    if s.contains('@') {
        s = LEADING_JAVADOC_AT_TAG_RE.replace(&s, " ").into_owned();
    }

    // ── Quote normalization ──
    s = s
        .replace(['`', '"'], "'")
        // Python unicode prefix
        .replace(" u'", " '")
        // Section sign
        .replace('§', " ")
        // Keep http URLs
        .replace("<http", " http")
        // Placeholders
        .replace("<insert ", " ")
        .replace("year>", " ")
        .replace("<year>", " ")
        .replace("<name>", " ");

    // ── Fold consecutive quotes ──
    s = CONSECUTIVE_QUOTES_RE.replace_all(&s, "'").into_owned();

    // ── Escape handling ──
    if s.contains('\\') || s.contains("('") || s.contains("')") || s.contains("],") {
        s = s
            .replace("\\t", " ")
            .replace("\\n", " ")
            .replace("\\r", " ")
            .replace("\\0", " ")
            .replace('\\', " ")
            .replace("('", " ")
            .replace("')", " ")
            .replace("],", " ");
    }

    // ── Debian markup removal ──
    if s.contains("<s") || s.contains("</s>") {
        s = s.replace("</s>", "").replace("<s>", "").replace("<s/>", "");
    }

    s = ANGLE_BRACKET_SINGLE_YEAR_RE
        .replace_all(&s, "${year}")
        .into_owned();

    s = ANGLE_BRACKET_MARKDOWN_LINK_RE
        .replace_all(&s, "${text} (${url})")
        .into_owned();

    s = MAILTO_ANCHOR_RE.replace_all(&s, "$1 $2").into_owned();

    s = EMAIL_ANCHOR_RE.replace_all(&s, "$1 $2").into_owned();

    s = HTTP_ANCHOR_RE.replace_all(&s, "$1 $2").into_owned();

    if s.contains("<o:p>") || s.contains("</o:p>") {
        s = s.replace("<o:p>", " ").replace("</o:p>", " ");
    }

    if s.to_ascii_lowercase().contains("<o:template>") {
        s = MSO_TEMPLATE_ELEMENT_RE.replace_all(&s, " ").into_owned();
    }
    if s.to_ascii_lowercase().contains("<o:lastauthor>") {
        s = MSO_LASTAUTHOR_ELEMENT_RE.replace_all(&s, " ").into_owned();
    }

    if s.to_ascii_lowercase().contains("o:template") {
        s = MSO_O_TEMPLATE_TOKEN_RE.replace_all(&s, " ").into_owned();
    }

    if s.to_ascii_lowercase().contains("value=") {
        let mut extracted: Vec<String> = Vec::new();
        for cap in TAG_VALUE_ATTR_DQ_RE.captures_iter(&s) {
            let v = cap.get(1).map(|m| m.as_str()).unwrap_or("");
            let lower = v.to_ascii_lowercase();
            if lower.contains("copyright")
                || lower.contains("(c)")
                || lower.contains("today.year")
                || lower.contains("current_year")
            {
                extracted.push(v.to_string());
            }
        }
        for cap in TAG_VALUE_ATTR_SQ_RE.captures_iter(&s) {
            let v = cap.get(1).map(|m| m.as_str()).unwrap_or("");
            let lower = v.to_ascii_lowercase();
            if lower.contains("copyright")
                || lower.contains("(c)")
                || lower.contains("today.year")
                || lower.contains("current_year")
            {
                extracted.push(v.to_string());
            }
        }
        if !extracted.is_empty() {
            s.push(' ');
            s.push_str(&extracted.join(" "));
        }
    }

    // ── HTML tag stripping (copyright/author/legal-aware) ──
    const PROTECT_LT: char = '\u{E000}';
    const PROTECT_GT: char = '\u{E001}';
    s = ONE_LETTER_ANGLE_EMAIL_RE
        .replace_all(&s, |caps: &regex::Captures| {
            format!("{PROTECT_LT}{}@{}{PROTECT_GT}", &caps[1], &caps[2])
        })
        .into_owned();

    s = ANGLE_EMAIL_RE
        .replace_all(&s, |caps: &regex::Captures| {
            let email = caps.name("email").map(|m| m.as_str()).unwrap_or("").trim();
            if email.is_empty() {
                " ".to_string()
            } else {
                format!("{PROTECT_LT}{email}{PROTECT_GT}")
            }
        })
        .into_owned();

    s = replace_tags_preserving_copyright(&s, &HTML_TAG_RE);

    // ── Malformed HTML tag stripping (no closing `>` required) ──
    s = replace_tags_preserving_copyright(&s, &HTML_TAG_MALFORMED_RE);

    s = s.replace(PROTECT_LT, "<").replace(PROTECT_GT, ">");

    // ── HTML attribute token removal ──
    s = HTML_ATTR_RE.replace_all(&s, " ").into_owned();
    s = MAILTO_RE.replace_all(&s, "$1").into_owned();

    // ── CSS measurement artifact removal ──
    // Strip CSS measurement units like "0pt" that leak through HTML demarkup
    // (e.g., from `margin:0pt` or `font-size:0pt` in inline styles).
    s = CSS_MEASUREMENT_RE.replace_all(&s, " ").into_owned();

    // ── Punctuation cleanup ──
    s = PUNCTUATION_RE.replace_all(&s, " ").into_owned();

    // ── Space normalization around commas ──
    s = s.replace(" , ", ", ");

    // ── Angle bracket spacing ──
    s = s.replace('>', "> ").replace('<', " <");
    s = JOIN_REGISTERED_MARK_RE
        .replace_all(&s, "${head}(r)")
        .into_owned();

    // ── Strip leading/trailing stars and spaces ──
    s = s.trim_matches(|c: char| c == ' ' || c == '*').to_string();

    // ── Normalize whitespace ──
    s.split_whitespace().collect::<Vec<_>>().join(" ")
}

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

    #[test]
    fn test_prepare_strips_unicode_replacement_char() {
        let prepared = prepare_text_line("Copyright \u{FFFD}1996-1999 Foo");
        assert!(
            !prepared.contains('\u{FFFD}'),
            "Prepared still contains replacement char: {prepared:?}"
        );
        assert!(
            prepared.contains("Copyright")
                && prepared.contains("1996-1999")
                && prepared.contains("Foo"),
            "Unexpected prepared text: {prepared:?}"
        );
    }

    #[test]
    fn test_prepare_preserves_unicode_replacement_char_in_words() {
        let prepared = prepare_text_line("Dag-Erling Co\u{FFFD}dan Sm\u{FFFD}rgrav");
        assert!(
            prepared.contains('\u{FFFD}'),
            "Expected replacement chars preserved: {prepared:?}"
        );
    }

    #[test]
    fn test_prepare_drops_nul_bytes() {
        let prepared = prepare_text_line("C\0o\0p\0y\0r\0i\0g\0h\0t \u{00A9} 2001 Acme");
        assert!(
            prepared.starts_with("Copyright"),
            "Expected NUL-stripped Copyright prefix, got: {prepared:?}"
        );
        assert!(
            prepared.contains("(c)"),
            "Expected (c) symbol, got: {prepared:?}"
        );
    }

    #[test]
    fn test_copyright_symbol_c_upper() {
        let result = prepare_text_line("(C) 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
        assert!(result.contains("2024"));
    }

    #[test]
    fn test_copyright_symbol_c_lower() {
        let result = prepare_text_line("(c) 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_c_spaced() {
        let result = prepare_text_line("( C) 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_unicode() {
        let result = prepare_text_line("© 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_html_entity_named() {
        let result = prepare_text_line("&copy; 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_html_entity_numeric() {
        let result = prepare_text_line("&#169; 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_html_entity_hex() {
        let result = prepare_text_line("&#xA9; 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_copy_without_semicolon() {
        let result = prepare_text_line("&copy 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_rst_copy() {
        let result = prepare_text_line("|copy| 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_u00a9() {
        let result = prepare_text_line("u00A9 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_backslash_xa9() {
        let result = prepare_text_line("\\XA9 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_copyright_symbol_angle_a9() {
        let result = prepare_text_line("<A9> 2024 Acme");
        assert!(result.contains("(c)"), "got: {result}");
    }

    #[test]
    fn test_html_entity_amp() {
        assert_eq!(prepare_text_line("foo &amp; bar"), "foo & bar");
    }

    #[test]
    fn test_prepare_unwraps_mailto_anchor() {
        let prepared = prepare_text_line(
            r#"* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>"#,
        );
        assert!(
            prepared.contains("stephane@hillion.org Stephane Hillion"),
            "got: {prepared:?}"
        );
        assert!(!prepared.contains("mailto:"), "got: {prepared:?}");
        assert!(!prepared.contains("<a"), "got: {prepared:?}");
    }

    #[test]
    fn test_prepare_unwraps_http_anchor() {
        let prepared = prepare_text_line(
            r#"&copy; 2009 Google - <a href="http://example.com/privacy.html">Privacy Policy</a>"#,
        );
        assert!(prepared.contains("(c) 2009 Google"), "got: {prepared:?}");
        assert!(
            prepared.contains("http://example.com/privacy.html"),
            "got: {prepared:?}"
        );
        assert!(prepared.contains("Privacy Policy"), "got: {prepared:?}");
        assert!(!prepared.contains("href="), "got: {prepared:?}");
        assert!(!prepared.contains("<a"), "got: {prepared:?}");
    }

    #[test]
    fn test_prepare_unwraps_json_escaped_http_anchor() {
        let prepared = prepare_text_line(
            r#"&copy; <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>"#,
        );
        assert!(prepared.contains("(c)"), "got: {prepared:?}");
        assert!(
            prepared.contains("http://www.openstreetmap.org/copyright"),
            "got: {prepared:?}"
        );
        assert!(prepared.contains("OpenStreetMap"), "got: {prepared:?}");
        assert!(!prepared.contains("href="), "got: {prepared:?}");
        assert!(!prepared.contains("<a"), "got: {prepared:?}");
    }

    #[test]
    fn test_prepare_email_anchor_expands_to_email_and_text() {
        let prepared = prepare_text_line(r#"@author <a href="dev@example.com">Dev</a>"#);
        assert!(
            prepared.contains("dev@example.com Dev"),
            "got: {prepared:?}"
        );
        assert!(!prepared.contains("href="), "got: {prepared:?}");
        assert!(!prepared.contains("<a"), "got: {prepared:?}");
    }

    #[test]
    fn test_prepare_strips_author_attribute_without_promoting_text() {
        let prepared =
            prepare_text_line(r#"<note author="Vinnie Falco">C++11 is required.</note>"#);
        assert!(
            !prepared.contains("Written by Vinnie Falco"),
            "got: {prepared:?}"
        );
        assert!(!prepared.contains("author="), "got: {prepared:?}");
    }

    #[test]
    fn test_prepare_does_not_promote_plain_text_author_assignment() {
        let prepared = prepare_text_line(r#"config says author="Vinnie Falco" and nothing else"#);
        assert!(
            !prepared.contains("Written by Vinnie Falco"),
            "got: {prepared:?}"
        );
    }

    #[test]
    fn test_prepare_preserves_angle_bracket_name() {
        let result = prepare_text_line("Copyright (c) <2010-2012> <Ciaran Jessup>");
        assert!(
            result.contains("Ciaran Jessup"),
            "Expected name preserved, got: {result:?}"
        );
    }

    #[test]
    fn test_prepare_registered_sign_only_after_ascii() {
        let result = prepare_text_line("W3C® (MIT)");
        assert!(result.contains("W3C(r)"), "got: {result:?}");

        let mojibake = prepare_text_line("Ö®¼ä");
        assert!(!mojibake.contains("(r)"), "got: {mojibake:?}");
    }

    #[test]
    fn test_prepare_preserves_escaped_angle_bracket_email() {
        let result =
            prepare_text_line("Copyright (C) 2006-2008 Jason Evans &lt;jasone@FreeBSD.org&gt;.");
        assert!(
            result.contains("<jasone@FreeBSD.org>"),
            "expected escaped email preserved with <>, got: {result:?}"
        );
    }

    #[test]
    fn test_html_entity_lt_gt() {
        // &lt; and &gt; are decoded to < and >, then < b > is stripped as
        // an HTML tag by the tag-stripping regex. This matches Python behavior.
        let result = prepare_text_line("a &lt;b&gt; c");
        assert!(result.contains("a"), "got: {result}");
        assert!(result.contains("c"), "got: {result}");
    }

    #[test]
    fn test_html_entity_quot() {
        // Quotes get normalized to single quotes, then punctuation removes them
        let result = prepare_text_line("say &quot;hello&quot;");
        assert!(result.contains("say"), "got: {result}");
        assert!(result.contains("hello"), "got: {result}");
    }

    #[test]
    fn test_html_entity_spaces() {
        let result = prepare_text_line("a&ensp;b&emsp;c&thinsp;d");
        assert_eq!(result, "a b c d");
    }

    #[test]
    fn test_html_entity_nbsp() {
        let result = prepare_text_line("a&nbsp;b&nbsp;c");
        assert_eq!(result, "a b c");
    }

    #[test]
    fn test_emdash_normalization() {
        assert_eq!(prepare_text_line("2020\u{2013}2024"), "2020-2024");
    }

    #[test]
    fn test_whitespace_normalization() {
        assert_eq!(prepare_text_line("  foo   bar   baz  "), "foo bar baz");
    }

    #[test]
    fn test_empty_string() {
        assert_eq!(prepare_text_line(""), "");
    }

    #[test]
    fn test_debian_markup_removal() {
        let result = prepare_text_line("Copyright <s>Foo</s>");
        assert!(!result.contains("<s>"), "got: {result}");
        assert!(!result.contains("</s>"), "got: {result}");
        assert!(result.contains("Foo"), "got: {result}");
    }

    #[test]
    fn test_debian_markup_self_closing() {
        let result = prepare_text_line("text <s/> more");
        assert!(!result.contains("<s/>"), "got: {result}");
    }

    #[test]
    fn test_comment_marker_c_style() {
        let result = prepare_text_line("/* Copyright 2024 Acme */");
        assert!(result.contains("Copyright"), "got: {result}");
        assert!(result.contains("2024"), "got: {result}");
    }

    #[test]
    fn test_comment_marker_star_prefix() {
        let result = prepare_text_line(" * Copyright 2024 Acme");
        assert!(result.contains("Copyright"), "got: {result}");
        assert!(result.contains("2024"), "got: {result}");
    }

    #[test]
    fn test_comment_marker_hash() {
        let result = prepare_text_line("# Copyright 2024 Acme");
        assert!(result.contains("Copyright"), "got: {result}");
        assert!(result.contains("2024"), "got: {result}");
    }

    #[test]
    fn test_comment_marker_rem() {
        let result = prepare_text_line("rem Copyright 2024 Acme");
        assert!(result.contains("Copyright"), "got: {result}");
    }

    #[test]
    fn test_comment_marker_dnl() {
        let result = prepare_text_line("dnl Copyright 2024 Acme");
        assert!(result.contains("Copyright"), "got: {result}");
    }

    #[test]
    fn test_placeholder_removal_year() {
        let result = prepare_text_line("Copyright <year> Author");
        assert!(!result.contains("<year>"), "got: {result}");
        assert!(result.contains("Author"), "got: {result}");
    }

    #[test]
    fn test_placeholder_removal_name() {
        let result = prepare_text_line("Copyright 2024 <name>");
        assert!(!result.contains("<name>"), "got: {result}");
    }

    #[test]
    fn test_placeholder_http_preserved() {
        let result = prepare_text_line("<http://example.com>");
        assert!(result.contains("http"), "got: {result}");
    }

    #[test]
    fn test_escape_handling_tab() {
        let result = prepare_text_line("foo\\tbar");
        assert!(result.contains("foo"), "got: {result}");
        assert!(result.contains("bar"), "got: {result}");
        assert!(!result.contains("\\t"), "got: {result}");
    }

    #[test]
    fn test_escape_handling_newline() {
        let result = prepare_text_line("foo\\nbar");
        assert!(!result.contains("\\n"), "got: {result}");
    }

    #[test]
    fn test_backslash_removal() {
        let result = prepare_text_line("foo\\bar");
        assert!(!result.contains('\\'), "got: {result}");
    }

    #[test]
    fn test_quote_normalization_backtick() {
        // Backticks become single quotes, then punctuation may remove them
        let result = prepare_text_line("say `hello`");
        assert!(result.contains("say"), "got: {result}");
        assert!(result.contains("hello"), "got: {result}");
    }

    #[test]
    fn test_consecutive_quotes_folded() {
        let result = prepare_text_line("it''s a test");
        // Two single quotes should become one
        assert!(result.contains("it"), "got: {result}");
    }

    #[test]
    fn test_pipe_removal() {
        let result = prepare_text_line("foo | bar");
        assert!(!result.contains('|'), "got: {result}");
    }

    #[test]
    fn test_section_sign_removal() {
        let result = prepare_text_line("Section§3");
        assert!(!result.contains('§'), "got: {result}");
    }

    #[test]
    fn test_html_tag_stripping() {
        let result = prepare_text_line("Copyright <b>2024</b> Acme");
        assert!(!result.contains("<b>"), "got: {result}");
        assert!(!result.contains("</b>"), "got: {result}");
        assert!(result.contains("2024"), "got: {result}");
    }

    #[test]
    fn test_comma_spacing() {
        assert_eq!(prepare_text_line("a , b , c"), "a, b, c");
    }

    #[test]
    fn test_printf_format_codes_removed() {
        let result = prepare_text_line("foo %s bar");
        // %s surrounded by spaces should be removed
        assert_eq!(result, "foo bar");
    }

    #[test]
    fn test_man_page_comment() {
        let result = prepare_text_line(".\" Copyright 2024");
        assert!(result.contains("Copyright"), "got: {result}");
    }

    #[test]
    fn test_combined_normalization() {
        let result = prepare_text_line(" * (C) 2024 Acme &amp; Co.");
        assert!(result.contains("(c)"), "got: {result}");
        assert!(result.contains("2024"), "got: {result}");
        assert!(result.contains("Acme"), "got: {result}");
        assert!(result.contains("& Co."), "got: {result}");
    }

    #[test]
    fn test_complex_line() {
        let result =
            prepare_text_line("/* Copyright &#169; 2020\u{2013}2024 Foo &amp; Bar <name> */");
        assert!(result.contains("(c)"), "got: {result}");
        assert!(result.contains("2020-2024"), "got: {result}");
        assert!(result.contains("Foo"), "got: {result}");
        assert!(result.contains("& Bar"), "got: {result}");
        assert!(!result.contains("<name>"), "got: {result}");
    }

    #[test]
    fn test_man_page_co_junk() {
        let result = prepare_text_line("\\\\ co 2024 Author");
        assert!(result.contains("2024"), "got: {result}");
        assert!(result.contains("Author"), "got: {result}");
    }

    #[test]
    fn test_cr_lf_entities() {
        let result = prepare_text_line("line1&#13;&#10;line2");
        assert_eq!(result, "line1 line2");
    }

    #[test]
    fn test_insert_placeholder() {
        let result = prepare_text_line("<insert your name>");
        assert!(!result.contains("<insert"), "got: {result}");
    }

    #[test]
    fn test_bracket_removal() {
        let result = prepare_text_line("foo [bar] {baz}");
        assert!(!result.contains('['), "got: {result}");
        assert!(!result.contains(']'), "got: {result}");
        assert!(!result.contains('{'), "got: {result}");
        assert!(!result.contains('}'), "got: {result}");
    }

    #[test]
    fn test_only_whitespace() {
        assert_eq!(prepare_text_line("   \t  \n  "), "");
    }

    #[test]
    fn test_passthrough_normal_text() {
        assert_eq!(
            prepare_text_line("Copyright 2024 John Doe"),
            "Copyright 2024 John Doe"
        );
    }

    #[test]
    fn test_unicode_names_preserved() {
        let result = prepare_text_line("Copyright 2024 François Müller");
        assert_eq!(result, "Copyright 2024 François Müller");
    }

    #[test]
    fn test_unicode_spanish_names_preserved() {
        let result = prepare_text_line("Copyright 2024 José García");
        assert_eq!(result, "Copyright 2024 José García");
    }

    #[test]
    fn test_unicode_nordic_names_preserved() {
        let result = prepare_text_line("Copyright 2024 Björn Ångström");
        assert_eq!(result, "Copyright 2024 Björn Ångström");
    }

    #[test]
    fn test_unicode_polish_names_preserved() {
        let result = prepare_text_line("Copyright 2024 Łukasz Żółw");
        assert_eq!(result, "Copyright 2024 Łukasz Żółw");
    }

    // ── Gap 1: Malformed/unclosed HTML tag stripping ──

    #[test]
    fn test_strip_malformed_tag_b_no_closing() {
        let result = prepare_text_line("Copyright <b 2024 Acme");
        assert!(
            !result.contains("<b"),
            "Malformed tag should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
        assert!(
            result.contains("Acme"),
            "Name should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_malformed_tag_div_no_closing() {
        let result = prepare_text_line("Copyright <div 2024 Acme");
        assert!(
            !result.contains("<div"),
            "Malformed tag should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_malformed_closing_tag() {
        let result = prepare_text_line("Copyright </a 2024 Acme");
        assert!(
            !result.contains("</a"),
            "Malformed closing tag should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_malformed_tag_span() {
        let result = prepare_text_line("Copyright <span 2024 Acme");
        assert!(
            !result.contains("<span"),
            "Malformed span should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_malformed_tag_p() {
        let result = prepare_text_line("<p Copyright 2024 Acme");
        assert!(
            !result.contains("<p"),
            "Malformed p tag should be stripped: {result}"
        );
        assert!(
            result.contains("Copyright"),
            "Copyright should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_self_closing_br() {
        let result = prepare_text_line("Copyright 2024<br/>Acme");
        assert!(
            !result.contains("<br"),
            "br tag should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
        assert!(
            result.contains("Acme"),
            "Name should be preserved: {result}"
        );
    }

    // ── Gap 2: HTML attribute token removal ──

    #[test]
    fn test_strip_href_attribute() {
        let result = prepare_text_line("Copyright href=http://example.com 2024 Acme");
        assert!(
            !result.contains("href="),
            "href attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_class_attribute() {
        let result = prepare_text_line("Copyright class=main 2024 Acme");
        assert!(
            !result.contains("class="),
            "class attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_width_attribute() {
        let result = prepare_text_line("Copyright width=100 2024 Acme");
        assert!(
            !result.contains("width="),
            "width attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_xmlns_attribute() {
        let result = prepare_text_line("Copyright xmlns=http://www.w3.org 2024 Acme");
        assert!(
            !result.contains("xmlns="),
            "xmlns attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_mailto() {
        let result = prepare_text_line("Copyright 2024 mailto:john@example.com Acme");
        assert!(
            !result.contains("mailto:"),
            "mailto should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
        assert!(
            result.contains("Acme"),
            "Name should be preserved: {result}"
        );
    }

    #[test]
    fn test_preserve_angle_bracket_email_with_i_prefix() {
        let result = prepare_text_line("Copyright (c) 2024 bgme <i@bgme.me>.");
        assert!(
            result.contains("<i@bgme.me>"),
            "Expected angle-bracket email preserved, got: {result:?}"
        );
        assert!(
            !result.contains(" bgme @bgme.me>"),
            "Did not expect stripped '<i' prefix, got: {result:?}"
        );
    }

    #[test]
    fn test_strip_lang_attribute() {
        let result = prepare_text_line("Copyright lang=en 2024 Acme");
        assert!(
            !result.contains("lang="),
            "lang attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_style_attribute() {
        let result = prepare_text_line("Copyright style=color:red 2024 Acme");
        assert!(
            !result.contains("style="),
            "style attribute should be stripped: {result}"
        );
        assert!(
            result.contains("2024"),
            "Year should be preserved: {result}"
        );
    }

    // ── Gap 3: Preserve copyright/author/legal in angle brackets ──

    #[test]
    fn test_preserve_copyright_in_angle_brackets() {
        let result = prepare_text_line("<copyright notice> 2024 Acme");
        assert!(
            result.contains("copyright"),
            "copyright token should be preserved: {result}"
        );
    }

    #[test]
    fn test_preserve_author_in_angle_brackets() {
        let result = prepare_text_line("<author> John Doe");
        assert!(
            result.contains("author"),
            "author token should be preserved: {result}"
        );
    }

    #[test]
    fn test_preserve_legal_in_angle_brackets() {
        let result = prepare_text_line("<legal> 2024 Acme Corp");
        assert!(
            result.contains("legal"),
            "legal token should be preserved: {result}"
        );
    }

    #[test]
    fn test_strip_regular_tag_but_preserve_copyright_tag() {
        let result = prepare_text_line("<div>Copyright</div> <copyright> 2024");
        assert!(
            result.contains("copyright"),
            "copyright tag should be preserved: {result}"
        );
        assert!(
            !result.contains("<div>"),
            "div tag should be stripped: {result}"
        );
    }

    #[test]
    fn test_strip_o_lastauthor_markup_tag() {
        let result = prepare_text_line("Copyright 2024 Foo <o:LastAuthor>bar</o:LastAuthor>");
        assert!(!result.to_ascii_lowercase().contains("o:lastauthor"));
        assert!(result.contains("Copyright 2024 Foo"));
    }

    #[test]
    fn test_strip_o_lastauthor_element_content() {
        let result = prepare_text_line("<o:LastAuthor>Jennifer Hruska</o:LastAuthor>");
        assert!(!result.to_ascii_lowercase().contains("jennifer"));
        assert!(!result.to_ascii_lowercase().contains("hruska"));
    }

    #[test]
    fn test_strip_o_template_token() {
        let result = prepare_text_line("Copyright 2024 Foo <o:template>");
        assert!(!result.to_ascii_lowercase().contains("o:template"));
    }

    #[test]
    fn test_strip_o_template_element_content() {
        let result = prepare_text_line("<o:Template>techdoc.dot</o:Template>");
        assert!(!result.to_ascii_lowercase().contains("techdoc.dot"));
    }
}

#[test]
fn test_copyright_symbol_square_c() {
    let result = prepare_text_line("[C] The Regents");
    assert!(result.contains("(c)"), "got: {result}");
}