quarto
Open-source scientific and technical publishing system built on Pandoc.
Installation
dagger install github.com/sagikazarmark/daggerverse/quarto@v0.3.0
Entrypoint
Return Type
Quarto !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | String | - | Version (image tag) to use from the official image repository as a base container. |
image | String | - | Custom image reference in "repository:tag" format to use as a base container. |
container | Container | - | Custom container to use as a base container. |
Example
func (m *myModule) example() *Quarto {
return dag.
Quarto()
}
Types
Quarto 🔗
container() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Quarto().
Container()
}
render() 🔗
Render files or projects to various document types.
Return Type
Renderer !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | Quarto source directory. |
input | String | - | Input to render within the project. |
siteUrl | String | - | Override site-url for website or book output. |
Example
func (m *myModule) example(source *Directory) *QuartoRenderer {
return dag.
Quarto().
Render(source)
}
Renderer 🔗
directory() 🔗
Get the output directory after rendering.
Return Type
Directory !
Example
func (m *myModule) example(source *Directory) *Directory {
return dag.
Quarto().
Render(source).
Directory()
}
file() 🔗
Get the output file after rendering.
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | No description provided |
Example
func (m *myModule) example(source *Directory, name string) *Directory {
return dag.
Quarto().
Render(source).
File(name)
}