gitextract_iwizgnk_/ ├── .cargo/ │ └── config.toml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── custom.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── instructions/ │ │ └── rust.instructions.md │ └── workflows/ │ ├── ci.yml │ └── major-release-tag.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── Dockerfile ├── GithubAction-Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── benches/ │ ├── benchmark/ │ │ ├── html/ │ │ │ ├── many_links.html │ │ │ ├── no_links.html │ │ │ └── xhtml.xhtml │ │ └── markdown/ │ │ ├── HashLinks.md │ │ ├── ansi_encoded.md │ │ ├── binary_file.md │ │ ├── broken-local-link.md │ │ ├── deep/ │ │ │ └── deeper/ │ │ │ └── go_up.md │ │ ├── ignore_me.md │ │ ├── ignore_me_dir/ │ │ │ ├── ignore_me copy.md │ │ │ └── ignore_me.md │ │ ├── link_ignore_file_extension.md │ │ ├── many_links/ │ │ │ ├── many_links (another copy).md │ │ │ ├── many_links (copy).md │ │ │ └── many_links.md │ │ ├── many_links.md │ │ ├── md_file_endings/ │ │ │ ├── F3_with_umlaut.md │ │ │ ├── NotMardown.nm │ │ │ ├── f1.md │ │ │ ├── f10.text │ │ │ ├── f11.Rmd │ │ │ ├── f12.mkd │ │ │ ├── f2.MD │ │ │ ├── f4.markdown │ │ │ ├── f5.mkdown │ │ │ ├── f6.mkdn │ │ │ ├── f7.mdwn │ │ │ ├── f8.mdtxt │ │ │ ├── f9.mdtext │ │ │ └── notmd │ │ ├── no_links/ │ │ │ ├── no_links (3rd copy).md │ │ │ ├── no_links (4th copy).md │ │ │ ├── no_links (5th copy).md │ │ │ ├── no_links (6th copy).md │ │ │ ├── no_links (7th copy).md │ │ │ ├── no_links (another copy).md │ │ │ ├── no_links (copy).md │ │ │ └── no_links.md │ │ ├── ref_links.md │ │ ├── reference_link.md │ │ ├── repeate_same_link.md │ │ ├── script_and_comments.md │ │ └── withUmlaut_ö/ │ │ └── LinksWithUmläuts.md │ ├── benchmarks.rs │ ├── different_root/ │ │ ├── one/ │ │ │ └── two.md │ │ ├── one.md │ │ └── two.md │ └── throttle/ │ ├── different_host.md │ ├── same_host.md │ └── same_ip.md ├── entrypoint.sh ├── release.toml ├── src/ │ ├── cli.rs │ ├── file_traversal.rs │ ├── lib.rs │ ├── link_extractors/ │ │ ├── html_link_extractor.rs │ │ ├── ignore_comments.rs │ │ ├── link_extractor.rs │ │ ├── markdown_link_extractor.rs │ │ └── mod.rs │ ├── link_validator/ │ │ ├── file_system.rs │ │ ├── http.rs │ │ ├── link_type.rs │ │ ├── mail.rs │ │ └── mod.rs │ ├── logger.rs │ ├── main.rs │ └── markup.rs └── tests/ ├── end_to_end.rs ├── end_to_end_mock.rs ├── file_traversal.rs ├── files_option.rs ├── gitignore_recursive.rs ├── helper/ │ └── mod.rs ├── markdown_files.rs ├── symlink_test.rs ├── test_files/ │ ├── deep/ │ │ └── index.md │ ├── many_links.md │ ├── reference_links.md │ ├── repeat_links.md │ └── symlink_test/ │ └── original.md └── throttle.rs