Skip to content

Commit

Permalink
bump version and logistics
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhu233 committed Jan 18, 2024
1 parent 0da5c69 commit 256d143
Show file tree
Hide file tree
Showing 8 changed files with 3,001 additions and 634 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: kableExtra
Type: Package
Title: Construct Complex Table with 'kable' and Pipe Syntax
Version: 1.3.9.9001
Version: 1.4.0
Authors@R: c(
person('Hao', 'Zhu', email = 'haozhu233@gmail.com', role = c('aut', 'cre'),
comment = c(ORCID = '0000-0002-3386-6076')),
Expand Down
36 changes: 18 additions & 18 deletions docs/awesome_table_in_html.Rmd

Large diffs are not rendered by default.

384 changes: 193 additions & 191 deletions docs/awesome_table_in_html.html

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions docs/awesome_table_in_html_cn.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,13 @@ kable(dt, format = "html") %>%
library(dplyr)
mtcars[1:10, 1:2] %>%
mutate(
car = row.names(.),
# You don't need format = "html" if you have ever defined options(knitr.table.format)
mpg = cell_spec(mpg, "html", color = ifelse(mpg > 20, "red", "blue")),
cyl = cell_spec(cyl, "html", color = "white", align = "c", angle = 45,
background = factor(cyl, c(4, 6, 8),
c("#666666", "#999999", "#BBBBBB")))
) %>%
select(car, mpg, cyl) %>%
select(mpg, cyl) %>%
kable("html", escape = F) %>%
kable_styling("striped", full_width = F)
```
Expand Down Expand Up @@ -254,7 +253,6 @@ kable(popover_dt, "html", escape = FALSE) %>%
library(formattable)
mtcars[1:5, 1:4] %>%
mutate(
car = row.names(.),
mpg = color_tile("white", "orange")(mpg),
cyl = cell_spec(cyl, "html", angle = (1:5)*60,
background = "red", color = "white", align = "center"),
Expand All @@ -263,7 +261,6 @@ mtcars[1:5, 1:4] %>%
cell_spec(disp, "html", color = "green", italic = T)),
hp = color_bar("lightgreen")(hp)
) %>%
select(car, everything()) %>%
kable("html", escape = F) %>%
kable_styling("hover", full_width = F) %>%
column_spec(5, width = "3cm") %>%
Expand Down
2,398 changes: 1,992 additions & 406 deletions docs/awesome_table_in_html_cn.html

Large diffs are not rendered by default.

34 changes: 20 additions & 14 deletions docs/awesome_table_in_pdf.Rmd

Large diffs are not rendered by default.

Loading

0 comments on commit 256d143

Please sign in to comment.