Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/paginate #334

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: formatters
Title: ASCII Formatting for Values and Tables
Version: 0.5.10.9000
Date: 2025-01-09
Version: 0.5.10.9001
Date: 2025-01-14
Authors@R: c(
person("Gabriel", "Becker", , "[email protected]", role = "aut",
comment = "original creator of the package"),
Expand Down
3 changes: 3 additions & 0 deletions R/mpf_exporters.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ export_as_txt <- function(x,
page_num = default_page_number(),
fontspec = font_spec(font_family, font_size, lineheight),
col_gap = 3) {


paginate <- isTRUE(list(...)$paginate)
# Processing lists of tables or listings
if (.is_list_of_tables_or_listings(x)) {
if (isFALSE(paginate)) {
Expand Down
Loading