Skip to content

Commit

Permalink
Merge pull request #102 from atusy/release-v0.6.3
Browse files Browse the repository at this point in the history
release v0.6.3
  • Loading branch information
atusy authored Mar 31, 2024
2 parents 30d5d70 + ccb459e commit 188c395
Show file tree
Hide file tree
Showing 26 changed files with 478 additions and 467 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: ftExtra
Title: Extensions for 'Flextable'
Version: 0.6.1
Date: 2023-09-28
Version: 0.6.3
Date: 2024-03-31
Authors@R:
c(person(given = "Atsushi",
family = "Yasumoto",
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# ftExtra 0.6.2
# ftExtra 0.6.3

* Require **flextable**>=0.9.5 to fix broken `colformat_md` (#101)

# ftExtra 0.6.2

* Avoid error from using horizontal rule (#98)

# ftExtra 0.6.1

* Deprecated functions masking the corresponding ones from the **flextable** package (#95)
Expand Down
3 changes: 2 additions & 1 deletion R/footnote.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
#' }
#'
#' # Use a user-defined function to format footnote symbols
#' if (rmarkdown::pandoc_available("2.0.6")) {
#' # Skipped to reduce build time
#' if (FALSE) {
#' # a function to format symbols of footnote references
#' ref <- function(n, part, footer) {
#' # Change symbols by context
Expand Down
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ data.frame(
z = c("***~ft~^Extra^** is*", "*Cool*"),
stringsAsFactors = FALSE
) %>%
as_flextable() %>%
flextable() %>%
colformat_md()
```

Expand All @@ -81,7 +81,7 @@ data.frame(
```{r span-header, render = render_html}
iris %>%
head() %>%
as_flextable() %>%
flextable() %>%
span_header()
```

Expand All @@ -92,5 +92,5 @@ library(dplyr, warn.conflicts = FALSE)
iris %>%
group_by(Species) %>%
slice(1:2) %>%
as_flextable()
flextable()
```
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ data.frame(
z = c("***~ft~^Extra^** is*", "*Cool*"),
stringsAsFactors = FALSE
) %>%
as_flextable() %>%
flextable() %>%
colformat_md()
```

Expand All @@ -58,7 +58,7 @@ data.frame(
``` r
iris %>%
head %>%
as_flextable() %>%
flextable() %>%
span_header()
```

Expand All @@ -71,7 +71,7 @@ library(dplyr, warn.conflicts = FALSE)
iris %>%
group_by(Species) %>%
slice(1:2) %>%
as_flextable()
flextable()
```

<img src="man/figures/group-rows-1.png" width="100%" />
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

210 changes: 105 additions & 105 deletions docs/articles/format_columns.html

Large diffs are not rendered by default.

458 changes: 229 additions & 229 deletions docs/articles/group-rows.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

172 changes: 86 additions & 86 deletions docs/articles/transform-headers.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ articles:
format_columns: format_columns.html
group-rows: group-rows.html
transform-headers: transform-headers.html
last_built: 2024-03-31T12:21Z
last_built: 2024-03-31T14:41Z

Loading

0 comments on commit 188c395

Please sign in to comment.