Skip to contents

This function renders a Quarto .qmd document to a specified output format and then moves the resulting file to a designated output path. It uses quarto::quarto_render to perform the rendering and fs::file_move to handle the file movement.

Usage

render_qmd(input_file, output_file, output_path, file_ext, ...)

Arguments

input_file

A character string specifying the path to the input Quarto .qmd file.

output_path

A character string specifying the directory where the rendered file should be moved.

...

Additional arguments passed to quarto::quarto_render.

Value

This function does not return a value. It performs rendering and file moving operations, and displays a message indicating the file movement.