You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating package documentation using roxygen 7.1.2 & pkgdown 2.0.2.
My functions are written as
#' Sort some objects#' @param x,decreasing,na.last,\dots As in [`sort()`].#' @exportsort.multiPhylo<-function(x, decreasing=FALSE, na.last=NA, ...) {
x# Function body goes here...
}
#' @rdname sort.multiPhylo#' @export`<.phylo`<-function(e1, e2) {
TRUE# Function body goes here...
}
The documentation in R is rendered as expected:
## S3 method for class 'multiPhylo'
sort(x, decreasing=FALSE, na.last=NA, ...)
## S3 method for class 'phylo'e1<e2
I am creating package documentation using roxygen 7.1.2 & pkgdown 2.0.2.
My functions are written as
The documentation in R is rendered as expected:
But the pkgdown site yields:
Note the html-encoding of
<
and the arrangement of the function as<(e1, e2)
instead ofe1 < e2
.The text was updated successfully, but these errors were encountered: