r-lib / pkgdown

Generate static html documentation for an R package

Home Page:https://pkgdown.r-lib.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`as_html.tag_cr` is defined twice with different definitions

dmurdoch opened this issue · comments

The first defn is here:

as_html.tag_cr <- function(x, ...) "<br >"

The second one is here:

as_html.tag_cr <- function(x, ...) "<br />"

The first definition will be replaced by the second, so if the second one is the intended one, things are fine, just a little confusing.