We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fc070 commit 415773cCopy full SHA for 415773c
R/print_html.R
@@ -58,9 +58,9 @@ print_html.estimate_grouplevel <- print_html.estimate_contrasts
58
# we allow exporting HTML format based on "gt" or "tinytable"
59
.check_format_backend <- function(...) {
60
dots <- list(...)
61
- if (is.null(dots) || !identical(dots$backend, "tt")) {
62
- "html"
63
- } else {
+ if (identical(dots$backend, "tt")) {
64
"tt"
+ } else {
+ "html"
65
}
66
0 commit comments