I can't see a reason to have `endsWith(x, ".html")` two times in the `is_web()` on lines 67-69? ```r is_web <- function(x) { endsWith(x, ".php") || endsWith(x, ".html") || endsWith(x, ".html") || endsWith(x, ".htm") } ```
I can't see a reason to have
endsWith(x, ".html")two times in theis_web()on lines 67-69?