The -bake command needs to analyze link hrefs and such to figure out what else to scrape. But the algorithm it uses is a bit too crude - anything not starting with http: or https: is considered a local link, but this is false; things can use other protocols, such as mailto:, javascript:, file:, data: etc., which the scraper shouldn't touch.
See #23 for example.
The -bake command needs to analyze link hrefs and such to figure out what else to scrape. But the algorithm it uses is a bit too crude - anything not starting with
http:orhttps:is considered a local link, but this is false; things can use other protocols, such asmailto:,javascript:,file:,data:etc., which the scraper shouldn't touch.See #23 for example.