Closed sje30 closed 10 years ago
Thanks for the note! That sounds like a problem of roxygen2, which does not interpret Rd comments correctly. Actually roxygen2 escapes all %
's in the examples, and assumes they should be treated literally. I never write comments in Rd (I guess neither does Hadley), so I did not realize this problem before.
Thanks for the note! That sounds like a problem of roxygen2, which does not interpret Rd comments correctly. Actually roxygen2 escapes all
%
's in the examples, and assumes they should be treated literately. I never write comments in Rd (I guess neither does Hadley), so I did not realize this problem before.
Okay, thanks for checking!
Hi, thanks for such a great package. I used it to convert some .Rd files. One problem I noted was that comments (starting with %%) in my .Rd file were just copied, as-is, to the roxygen code. This casused a problem as I had a comment in my examples section:
Then when R CHECK was running, it hit %% and complained. My solution for now is to remove the comment, but just thought I'd let you know.