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
Easiest way to make a reprex here is to use internal markdown() function:
md<-"| x || ----- || `x` y |"
cat(roxygen2:::markdown(md))
#> \tabular{l}{#> x \cr#> \code{x} \tab y \cr#> }md<-"| x || ----- || x y |"
cat(roxygen2:::markdown(md))
#> \tabular{l}{#> x \cr#> x y \cr#> }
results in
Note the additional
\tab
after\code{test}
. This breaks the table formatting as this line now has 4 cols instead of 3.(I tried to come up with a full reprex but didn't manage to combine
roxygen2:::roc_proc_text(roxygen2:::rd_roclet()
in the right way.)The text was updated successfully, but these errors were encountered: