Skip to content

Commit

Permalink
use pander to render table instead of kable
Browse files Browse the repository at this point in the history
  • Loading branch information
hansvancalster committed Jun 19, 2024
1 parent 6ee5543 commit de7604c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ empty_table <- tibble(
`Protocolcode` = protocol_code,
`Versienummer` = version_number,
`Opgenomen als subprotocol` = appendix) %>%
kable()
pander::pander(split.tables = Inf)
if (exists("params")) {
if (!is.null(params$dependencies)) {
Expand All @@ -36,7 +36,7 @@ if (exists("params")) {
`Protocolcode` = protocol_code,
`Versienummer` = version_number,
`Opgenomen als subprotocol` = appendix) %>%
kable()
pander::pander(split.tables = Inf)
} else {
empty_table
}
Expand Down
2 changes: 1 addition & 1 deletion source/spp/mnm/spp_116_nl_abiotiek_stilstaand/index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ tibble(
taal = metadata[["language"]],
projectnaam = metadata[["project_name"]]
) %>%
kable()
pander::pander(split.tables = Inf)
```

```{r results="asis"}
Expand Down

0 comments on commit de7604c

Please sign in to comment.