-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path_quarto.yml
50 lines (44 loc) · 1.41 KB
/
_quarto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
####### README #######
# This is the HOWTO and the config file to build .qmd files
#
# First install quartodoc with `uv pip install quartodoc`
#
# To create the qmd files, run the following command in the terminal:
# > quartodoc build
# the result will be in ./qmd_files or (else specified in the dir field)
# modify the current file to change the included functions and the layout
# finally, run the following command to preview the website if wanted:
# > quarto preview
#
# NOTE: This references the marginaleffects in .venv first, to reference the local marginaleffects, delete or rename the folder marginaleffects in .venv/lib/
project:
type: website
# tell quarto to read the generated sidebar
# metadata-files:
# - _sidebar.yml
format:
html:
theme: cosmo
css: styles.css
toc: false
quartodoc:
# the name used to import the package you want to create reference docs for
package: marginaleffects
style: "pkgdown"
# write sidebar data to this file
# sidebar: _sidebar.yml
dir: qmd_files
sections:
- title: Marginaleffects API reference guide
desc: Marginaleffects functions.
contents:
# the functions being documented in the package.
# you can refer to anything: class methods, modules, etc..
- predictions
- comparisons
- slopes
- hypotheses
- datagrid
- plot_predictions
- plot_comparisons
- plot_slopes