From 663428799bb6e4da8d0bcfda866723f27aafd4cd Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 5 Dec 2024 16:55:38 +0100 Subject: [PATCH] docs(sessions): :memo: need to include the `Title` in the description for things to work (#223) ## Description The current version of prodigenr doesn't add the title to the description file, which is needed for some usethis functions. This adds a small fix we have to do in the introduction section. Closes #208 and closes #213 Doesn't need a review. ## Checklist - [x] Ran spell-check - [x] Formatted Markdown - [x] Rendered website locally --- sessions/introduction.qmd | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sessions/introduction.qmd b/sessions/introduction.qmd index 98d436e..4bbd8f4 100644 --- a/sessions/introduction.qmd +++ b/sessions/introduction.qmd @@ -164,3 +164,14 @@ Exercises](../appendix/extra-exercises.qmd) section. It is still a work-in-progress, so there are only a few exercises available right now. ::: ::::: + +## Small fixes + + + +We need to add a `Title:` field to the `DESCRIPTION` file in order for other +sections of the course to work properly. Run this bit of code: + +```{.r filename="Console"} +desc::desc_set("Title", "AdvancedR3") +```