A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update

sspaeti d5fcc649 4c59de13

+2 -1
+2 -1
internal/imap/client.go
··· 1250 1250 return false 1251 1251 } 1252 1252 // Check size heuristics: width="1", height="1", width="0", height="0" 1253 - if regexp.MustCompile(`(?i)\b(?:width|height)=["']?[01](?:px)?["']?`).MatchString(tag) { 1253 + // The trailing ["\s>] ensures we don't match width="100" etc. 1254 + if regexp.MustCompile(`(?i)\b(?:width|height)=["']?[01](?:px)?["'\s>]`).MatchString(tag) { 1254 1255 return true 1255 1256 } 1256 1257 // Check CSS hiding: display:none, visibility:hidden