File tree Expand file tree Collapse file tree 4 files changed +37
-150
lines changed Expand file tree Collapse file tree 4 files changed +37
-150
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ docs/examples/%: examples/%/_site
32
32
33
33
docs-build-examples : docs/examples/single-page docs/examples/pkgdown docs/examples/auto-package
34
34
35
+ docs-build-readme :
36
+ BUILDING_README=1 cd docs \
37
+ && quarto render get-started/overview.qmd \
38
+ --to gfm \
39
+ --output README.md
40
+
35
41
docs-build : docs-build-examples
36
42
cd docs && quarto add --no-prompt ..
37
43
cd docs && quartodoc build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ---
2
+ replace_base_domain : " https://machow.github.io/quartodoc"
3
+ replace_rel_path : " /get-started"
4
+ filters :
5
+ - _filters/replace-readme-links.lua
6
+ format : gfm
7
+ ---
8
+
9
+ {{< include get-started/overview.qmd >}}
Original file line number Diff line number Diff line change @@ -19,10 +19,25 @@ or read on for instructions on installation and use.
19
19
20
20
<br >
21
21
22
-
22
+ ``` {python}
23
+ #| echo: false
24
+ #| output: asis
25
+ import os
26
+
27
+ if "BUILDING_README" in os.environ:
28
+ print("""
29
+ [](https://www.loom.com/share/fb4eb736848e470b8409ba46b514e2ed)
30
+ """)
31
+ else:
32
+ print("""
23
33
<div style="position: relative; padding-bottom: 64.5933014354067%; height: 0;"><iframe src="https://www.loom.com/embed/fb4eb736848e470b8409ba46b514e2ed?sid=31db7652-43c6-4474-bab3-19dea2170775" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe></div>
34
+ """)
35
+
36
+ ```
37
+
38
+
39
+
24
40
25
- <br >
26
41
<br >
27
42
28
43
## Installation
@@ -131,9 +146,9 @@ The functions listed in `contents` are assumed to be imported from the package.
131
146
132
147
# # Learning more
133
148
134
- Go [to the next page](./get-started/ basic-docs.qmd) to learn how to configure quartodoc sites, or check out these handy pages :
149
+ Go [to the next page](basic-docs.qmd) to learn how to configure quartodoc sites, or check out these handy pages :
135
150
136
- * [Examples page](. /examples/index.qmd): sites using quartodoc.
137
- * [Tutorials page](. /tutorials/index.qmd): screencasts of building a quartodoc site.
138
- * [Docstring issues and examples](./get-started/ docstring-examples.qmd): common issues when formatting docstrings.
139
- * [Programming, the big picture](./get-started/ dev-big-picture.qmd): the nitty gritty of how quartodoc works, and how to extend it.
151
+ * [Examples page](/examples/index.qmd): sites using quartodoc.
152
+ * [Tutorials page](/tutorials/index.qmd): screencasts of building a quartodoc site.
153
+ * [Docstring issues and examples](docstring-examples.qmd): common issues when formatting docstrings.
154
+ * [Programming, the big picture](dev-big-picture.qmd): the nitty gritty of how quartodoc works, and how to extend it.
You can’t perform that action at this time.
0 commit comments