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.
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
.