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
Copy file name to clipboardExpand all lines: docs/get-started/overview.qmd
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -71,26 +71,29 @@ Getting started with quartodoc takes two steps: configuring quartodoc, then gene
71
71
72
72
You can configure quartodoc alongside the rest of your Quarto site in the [`_quarto.yml`](https://quarto.org/docs/projects/quarto-projects.html) file you are already using for Quarto. To [configure quartodoc](./basic-docs.qmd#site-configuration), you need to add a `quartodoc` section to the top level your `_quarto.yml` file. Below is a minimal example of a configuration that documents the `quartodoc` package:
73
73
74
+
<!-- Starter Template -->
75
+
74
76
```yaml
75
77
project:
76
78
type: website
77
79
78
80
# tell quarto to read the generated sidebar
79
81
metadata-files:
80
-
- api/_sidebar.yml
82
+
- reference/_sidebar.yml
81
83
82
84
# tell quarto to read the generated styles
83
85
format:
84
-
css:
85
-
- api/_styles-quartodoc.css
86
+
html:
87
+
css:
88
+
- reference/_styles-quartodoc.css
86
89
87
90
quartodoc:
88
91
# the name used to import the package you want to create reference docs for
0 commit comments