-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow user-defined tags from external packages, have a way to load an external package in roxygenize()
#1013
Comments
This already seems to work, as far I can tell. |
Wow. |
Actually, one issue is defining new tags without defining new roclets. E.g. roxygenlabs has roxy_tag_parse.roxy_tag_examplesIf <- function(x) {
...
}
roxy_tag_rd.roxy_tag_examplesIf <- function(x, base_path, env) {
rd_section("examples", x$val)
} which adds a new
Which is not terrible, but it would be cleaner to write
|
roxygenize()
One solution would be to load |
Before:
After:
The text was updated successfully, but these errors were encountered: