Skip to content

Commit 0e24e97

Browse files
authored
Table theme workaround for out of memory problems (#76)
1 parent dd23aab commit 0e24e97

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

template.qmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ tt_sys_info_df <- data.frame(
5555
tt(
5656
tt_sys_info_df,
5757
caption = "System information",
58-
theme = "striped"
58+
theme = "bootstrap"
5959
)
6060
```
6161

@@ -93,7 +93,7 @@ tt_git_df <- data.frame(
9393
tt(
9494
tt_git_df,
9595
caption = "Git information",
96-
theme = "striped"
96+
theme = "bootstrap"
9797
)
9898
```
9999

@@ -135,7 +135,7 @@ tt_riskmetric_df <- d_riskmetric %>%
135135
tt(
136136
tt_riskmetric_df,
137137
caption = "Package info assessed by the R package riskmetric",
138-
theme = "striped"
138+
theme = "bootstrap"
139139
)
140140
```
141141

@@ -209,7 +209,7 @@ if (require("covtracer", quietly = TRUE)) {
209209
tt(
210210
tt_covtracer_df,
211211
caption = "Tracebility matrix mapping unit tests to documented behaviours.",
212-
theme = "striped"
212+
theme = "bootstrap"
213213
)
214214
} else {
215215
cat("No test suites.")
@@ -238,7 +238,7 @@ if (require("covtracer", quietly = TRUE)) {
238238
tt(
239239
tt_untested_df,
240240
caption = "Untested behaviours: documentation that is not covered by any test.",
241-
theme = "striped"
241+
theme = "bootstrap"
242242
)
243243
}
244244
} else {
@@ -263,7 +263,7 @@ if (require("covtracer", quietly = TRUE)) {
263263
tt(
264264
tt_granularity_df,
265265
caption = "Granularity of unit tests: directly tested exported functions.",
266-
theme = "striped"
266+
theme = "bootstrap"
267267
)
268268
} else {
269269
cat("{covtracer} not available to produce a traceability matrix")

0 commit comments

Comments
 (0)