Skip to content

Commit 34970b8

Browse files
committed
docs: start on overview
1 parent 3a13b15 commit 34970b8

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

docs/get-started/overview.qmd

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,40 @@ jupyter:
88
---
99

1010
::: {.callout-warning}
11-
quartodoc is work in progress! For a basic implementation, take a look at the [docs folder](https://github.com/machow/quartodoc/tree/main/docs) for this site,
12-
including [this script](https://github.com/machow/quartodoc/blob/main/docs/1_generate_api.py) used to generate API pages.
11+
quartodoc is work in progress!
1312
:::
1413

15-
Coming soon!
14+
quartodoc let's you quickly generate python package documentation,
15+
using markdown and quarto. It is designed as an alternative to sphinx.
16+
17+
## Installation
18+
19+
```bash
20+
python -m pip install quartodoc
21+
22+
# or from github
23+
python -m pip install git+https://github.com/machow/quartodoc.git
24+
```
25+
26+
## Basic use
27+
28+
```yaml
29+
project:
30+
type: website
31+
resources:
32+
- objects.json
33+
34+
quartodoc:
35+
style: single-page
36+
dir: reference
37+
package: quartodoc
38+
sections:
39+
- title: Some functions
40+
desc: These functions inspect and parse docstrings.
41+
contents:
42+
- get_object
43+
- preview
44+
```
1645
1746
## Goals
1847

0 commit comments

Comments
 (0)