Skip to content
Snippets Groups Projects

align text in download table

Merged Fisher, Jason C. requested to merge (removed):develop into develop
1 file
+ 13
2
Compare changes
  • Side-by-side
  • Inline
+ 13
2
@@ -146,10 +146,21 @@ archive_size <- inldata::get_file_size(archive)
```
```{r echo=FALSE, results="asis"}
<style>
table th {
text-align: center;
}
</style>
```{r echo=FALSE, results="asis"}
align <- c("l", rep("c", ncol(tbl) - 1L))
options(knitr.kable.NA = '-')
knitr::kable(tbl, row.names = FALSE, col.names = col_names)
knitr::kable(tbl,
row.names = FALSE,
col.names = col_names,
align = align,
table.attr = 'style="width:100%; text-align:center;"'
)
```
Loading