Skip to content

Argus#21

Merged
jacobdum merged 9 commits intomainfrom
argus
Oct 23, 2025
Merged

Argus#21
jacobdum merged 9 commits intomainfrom
argus

Conversation

@jacobdum
Copy link
Collaborator

  • Fixed an issue where the source path of an object being written out with write_object_metadata() during a quarto render was being captured as the intermediate .rmarkdown.

Input .qmd:

---
title: "Metadata Test"
format: html
execute:
  warning: false
  message: false
---
library(reportifyr)

# Create a simple CSV table
table_file <-"test-table.csv"

# Generate simple data
test_data <- data.frame(
  id = 1:5,
  value = c(10, 20, 30, 40, 50),
  category = c("A", "B", "A", "B", "A")
)

write.csv(test_data, table_file, row.names = FALSE)

# Write metadata
reportifyr::write_object_metadata(object_file = table_file)

Before:
Screenshot 2025-10-19 at 7 05 31 PM

After:
Screenshot 2025-10-19 at 7 18 39 PM

Copy link
Collaborator

@mduncans mduncans left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@jacobdum jacobdum merged commit fd899b0 into main Oct 23, 2025
5 checks passed
@jacobdum jacobdum deleted the argus branch October 23, 2025 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants