Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via {sandpaper}
Source  : d81f7b1
Branch  : main
Author  : Toby Hodges <[email protected]>
Time    : 2024-07-08 07:47:53 +0000
Message : Merge pull request #9 from carpentries/update/workflows

Update Workflows to Version 0.16.5
  • Loading branch information
actions-user committed Jul 8, 2024
1 parent 4e2296b commit feb951d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions md5sum.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"file" "checksum" "built" "date"
"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2024-07-02"
"LICENSE.md" "afaf427b4223952624dcb6d8ded53ec0" "site/built/LICENSE.md" "2024-07-02"
"config.yaml" "372c39767f222648a59fa3adac187475" "site/built/config.yaml" "2024-07-02"
"index.md" "a02c9c785ed98ddd84fe3d34ddb12fcd" "site/built/index.md" "2024-07-02"
"links.md" "8184cf4149eafbf03ce8da8ff0778c14" "site/built/links.md" "2024-07-02"
"episodes/recipe_intro.md" "c48fa96a7b9f29772754d3c08062a30a" "site/built/recipe_intro.md" "2024-07-02"
"episodes/recipe_ingredients.Rmd" "d60fd03cf77e5a6b7fd18f904a77ac9e" "site/built/recipe_ingredients.md" "2024-07-02"
"episodes/recipe_instructions.Rmd" "b5125d841d67e94d1b0c8cb90393e6db" "site/built/recipe_instructions.md" "2024-07-02"
"instructors/instructor-notes.md" "60b93493cf1da06dfd63255d73854461" "site/built/instructor-notes.md" "2024-07-02"
"learners/setup.md" "05880608188b9ec69b4fa3a42dfaed47" "site/built/setup.md" "2024-07-02"
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-07-02"
"renv/profiles/lesson-requirements/renv.lock" "acab7716e36f4c8041696591e668b5ae" "site/built/renv.lock" "2024-07-02"
"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2024-07-08"
"LICENSE.md" "afaf427b4223952624dcb6d8ded53ec0" "site/built/LICENSE.md" "2024-07-08"
"config.yaml" "372c39767f222648a59fa3adac187475" "site/built/config.yaml" "2024-07-08"
"index.md" "a02c9c785ed98ddd84fe3d34ddb12fcd" "site/built/index.md" "2024-07-08"
"links.md" "8184cf4149eafbf03ce8da8ff0778c14" "site/built/links.md" "2024-07-08"
"episodes/recipe_intro.md" "c48fa96a7b9f29772754d3c08062a30a" "site/built/recipe_intro.md" "2024-07-08"
"episodes/recipe_ingredients.Rmd" "d60fd03cf77e5a6b7fd18f904a77ac9e" "site/built/recipe_ingredients.md" "2024-07-08"
"episodes/recipe_instructions.Rmd" "b5125d841d67e94d1b0c8cb90393e6db" "site/built/recipe_instructions.md" "2024-07-08"
"instructors/instructor-notes.md" "60b93493cf1da06dfd63255d73854461" "site/built/instructor-notes.md" "2024-07-08"
"learners/setup.md" "05880608188b9ec69b4fa3a42dfaed47" "site/built/setup.md" "2024-07-08"
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-07-08"
"renv/profiles/lesson-requirements/renv.lock" "d5018f054b0b746cceaf77ed9128a5e7" "site/built/renv.lock" "2024-07-08"
10 changes: 5 additions & 5 deletions recipe_ingredients.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ There are 3 main components to this recipe: the main ingredients for the dough,
### Dough Ingredients


```r
``` r
main_ingredients <- tribble(
~ingredient, ~amount_imperial, ~amount_grams,
"butter (cold)", "8 tablespoons", 113,
Expand Down Expand Up @@ -70,7 +70,7 @@ In warmer climates, you may want to reduce the amount of buttermilk and/or incre
### Cinnamon-sugar filling


```r
``` r
filling_ingredients <- tribble(
~ingredient, ~amount_imperial, ~amount_grams,
"light brown sugar", "¾ cup", 150,
Expand All @@ -93,7 +93,7 @@ filling_ingredients %>%
### Glaze


```r
``` r
glaze_ingredients <- tribble(
~ingredient, ~amount_imperial, ~amount_grams,
"powdered sugar", "1 cup", 120,
Expand Down Expand Up @@ -128,14 +128,14 @@ Add a column to `main_ingredients` that has the amount in ounces (weight, not fl
::::::::::::::::::::::::::::::::::::: solution


```r
``` r
main_ingredients <- main_ingredients %>%
mutate(amount_oz = amount_grams * 0.035274)

main_ingredients
```

```output
``` output
# A tibble: 8 × 4
ingredient amount_imperial amount_grams amount_oz
<chr> <chr> <dbl> <dbl>
Expand Down

0 comments on commit feb951d

Please sign in to comment.