Dagger
Search

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
NameTypeDefault ValueDescription
versionString -Version (image tag) to use from the official image repository as a base container.
imageString -Custom image reference in "repository:tag" format to use as a base container.
containerContainer -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
NameTypeDefault ValueDescription
sourceDirectory !-Quarto source directory.
inputString -Input to render within the project.
siteUrlString -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
NameTypeDefault ValueDescription
nameString !-No description provided
Example
func (m *myModule) example(source *Directory, name string) *Directory  {
	return dag.
			Quarto().
			Render(source).
			File(name)
}