Replies: 1 comment 4 replies
-
Hey! You should be able to set the top-level package to null, and document packages by using the full path to each function (or set For example, here is a config that documents pins and quartodoc: project:
type: website
# tell quarto to read the generated sidebar
metadata-files:
- _sidebar.yml
quartodoc:
package: null
# write sidebar data to this file
sidebar: _sidebar.yml
sections:
# pins specific documentation ----
- title: pins
package: pins
contents:
- board_connect
- board_s3
# quartodoc specific documentation ----
- title: quartodoc
package: quartodoc
contents:
- get_object
- MdRenderer
# or don't specify package, and use full name ----
- title: mixed
contents:
- quartodoc.collect
- pins.board_gcs
Does something like that work for you? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
basically the title. Saw the presentation on this at posit and got real excited for it.
My org is large with lots of internal products and teams. We are really digging into documentation and I want to show off the capabilities of quartodoc.
One requirement I can see being asked is how easy it would be to add new projects. So far I have been unable to do this.
I was hoping it was something like this;
But there is a requirement for a package to be named at the root so obviously not gonna cut it.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions