Skip to content

Commit 2459a88

Browse files
committed
qmd description update
1 parent fac3659 commit 2459a88

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

workflows.qmd

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,17 @@ counts <- data.frame(
4141
stringsAsFactors = FALSE
4242
)
4343
44+
design_count <- count_items(section_indices("Design"), "WD")
45+
build_count <- count_items(section_indices("Build"), "WB")
46+
test_count <- count_items(section_indices("Test"), "WT")
47+
learn_count <- count_items(section_indices("Learn"), "WL")
48+
4449
counts$Count <- c(
45-
count_items(section_indices("Design"), "WD"),
46-
count_items(section_indices("Build"), "WB"),
47-
count_items(section_indices("Test"), "WT"),
48-
count_items(section_indices("Learn"), "WL"),
49-
sum(counts$Count[1:4])
50+
design_count,
51+
build_count,
52+
test_count,
53+
learn_count,
54+
sum(c(design_count, build_count, test_count, learn_count))
5055
)
5156
5257
kable(counts[, c("Category", "Count", "Description")], caption = "Workflow Categories Overview")

0 commit comments

Comments
 (0)