1
+ ---
2
+ toc-title : Table of contents
3
+ ---
1
4
2
5
![ Pypi
3
6
version] ( https://img.shields.io/pypi/v/mkquartodocs?style=flat-square.png )
@@ -42,28 +45,32 @@ copying outpus.
42
45
This will render code chunks and save the outputs! Check out
43
46
https://quarto.org/ for more examples on how to use the format.
44
47
45
- This … .
48
+ This ... .
46
49
47
50
```` markdown
48
51
49
52
```{python}
50
- print(1+1 )
53
+ print(1+2 )
51
54
```
52
55
````
53
56
54
- Will become this …
57
+ Will become this ...
55
58
56
- ``` python
57
- print (1 + 1 )
59
+ :::: {.cell execution_count="1"}
60
+ ``` {.python .cell-code}
61
+ print(1+2)
58
62
```
59
63
60
- 2
64
+ ::: {.cell-output .cell-output-stdout}
65
+ 3
66
+ :::
67
+ ::::
61
68
62
69
## Installation
63
70
64
71
1 . Make sure you have quarto installed in your computer.
65
72
66
- - https://quarto.org/docs/get-started/
73
+ - https://quarto.org/docs/get-started/
67
74
68
75
2 . Install ` mkquartodocs `
69
76
@@ -85,11 +92,11 @@ plugins:
85
92
86
93
Available configuration options:
87
94
88
- - **quarto_path**: Specifies where to look for the quarto executable.
89
- - **keep_output**: If true it will skip the cleanup step in the
90
- directory.
91
- - **ignore**: a python regular expressions that if matched will mark the
92
- file to not be rendered. Note that they need to be full matches
95
+ - **quarto_path**: Specifies where to look for the quarto executable.
96
+ - **keep_output**: If true it will skip the cleanup step in the
97
+ directory.
98
+ - **ignore**: a python regular expressions that if matched will mark
99
+ the file to not be rendered. Note that they need to be full matches
93
100
94
101
` ` ` yaml
95
102
# Whatever is in your mkdocs.yml configuration file....
@@ -113,7 +120,10 @@ files, render them, generate the output and clean after itself.
113
120
114
121
The things that need to/could be added to the project :
115
122
116
- - [ ] quarto project support
117
- - [ ] render in temporary directory, posibly with a ‘safe’ argument
118
- - [ ] addition of files not in the docs directory, ‘include’ argument
119
- - [ ] add readme to testing data
123
+ - [ ] quarto project support
124
+ - [ ] render in temporary directory, posibly with a 'safe' argument
125
+ - [ ] addition of files not in the docs directory, 'include' argument
126
+ - [ ] add readme to testing data
127
+ - [ ] move
128
+ `INFO - mkquartodocs : Running RemoveCellDataPreprocessor` to
129
+ debug log
0 commit comments