File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
name : python3
8
8
---
9
9
10
- While the "Basic Use" section covered how to configure and build a site with quartodoc, this section focuses on using quartodoc as a python program.
10
+ While the "Basic Use" section covered how to configure and build a site with quartodoc, this section focuses on using quartodoc as a Python program.
11
11
12
12
Programming with quartodoc will help with debugging, tinkering, and extending things.
13
13
@@ -23,7 +23,7 @@ This page will cover the basics of the Builder and this process.
23
23
24
24
## The Builder
25
25
26
- The code below shows a Builder object being loaded from a ` _quarto.yml ` config (loaded as a python dictionary).
26
+ The code below shows a Builder object being loaded from a ` _quarto.yml ` config (loaded as a Python dictionary).
27
27
28
28
``` {python}
29
29
import yaml
@@ -67,7 +67,7 @@ Notice the following:
67
67
* ` preview ` represents calls like ` Layout() ` with a box to the left, and then
68
68
a pipe connecting it to each of its arguments.
69
69
* The content entry ` MdRenderer ` is represented by an [ Auto] ( `quartodoc.Auto` ) class.
70
- This specifies a python object to look up and document.
70
+ This specifies a Python object to look up and document.
71
71
72
72
We can follow the path in the preview above, to pull out just the contents piece:
73
73
You can’t perform that action at this time.
0 commit comments