Skip to content

Commit

Permalink
removing automatic lab render from key for rstudio lab
Browse files Browse the repository at this point in the history
  • Loading branch information
carriewright11 committed Sep 30, 2024
1 parent 4fbbfaa commit 715ea77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/blank_labs_from_keys.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

find modules/ -type f -name "*_Key.Rmd" -print0 | while IFS= read -r -d '' file; do
find modules/ -type f ! -name "*RStudio*" -name "*_Key.Rmd" -print0 | while IFS= read -r -d '' file; do
# Remove Rmarkdown chunk content
# !! Note that the chunks must be named, with the name ending with "response"
# to be cleared. This prevents unwanted erasure of library loading and knitr
Expand Down

0 comments on commit 715ea77

Please sign in to comment.