Learn R Programming

froggeR (version 0.6.0)

write_notes: Create a Dated Progress Notes File

Description

This function streamlines project documentation by creating a dated progress notes file and opening it for editing.

Usage

write_notes(path = here::here())

Value

Invisibly returns the file path after creating a dated progress notes file.

Arguments

path

Character. Path to the project directory. Default is current project root via here.

Details

The dated_progress_notes.md file is initialized with the current date and is designed to help track project milestones chronologically. This file supports markdown formatting for rich documentation of project progress.

See Also

quarto_project, write_readme

Examples

Run this code
# Create a temporary directory for testing
tmp_dir <- tempdir()

# Write the progress notes file
write_notes(path = tmp_dir)

# Confirm the file was created
file.exists(file.path(tmp_dir, "dated_progress_notes.md"))

# Clean up
unlink(file.path(tmp_dir, "dated_progress_notes.md"))

Run the code above in your browser using DataLab