commit 711491341a21a9af94a17fc8782eacf3867e07a1 parent 0bb22ff9bbba85580d50f5f02d32ec9f131c135a Author: Andrew Laack <andrew@laack.co> Date: Tue, 5 May 2026 12:08:23 -0500 Comment Diffstat:
| M | crawl/main.go | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/crawl/main.go b/crawl/main.go @@ -58,6 +58,11 @@ func parseLinks(body string, currentUrl string) []string { if len(item) > 3 && !escaped { if item[0] == '=' && item[1] == '>' { // TODO: is =>link valid? + + // TODO: I've seen =>{tab}link{tab} + // and stuff like that from tuxmachines. is that reasonable to support? + // is tab == space? + links = append(links, item[3:]) } }