Skip to content

Commit

Permalink
Workaround for econdig issue #296
Browse files Browse the repository at this point in the history
  • Loading branch information
lselzer committed Feb 12, 2018
1 parent 32e0f75 commit 06c2f65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/pandoc.R
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,8 @@ pandoc.table.return <- function(t, caption, digits = panderOptions('digits'), de

## expands cells for output
table.expand <- function(cells, cols.width, justify, sep.cols) {
## Fixes encoding issue
cells <- enc2native(cells)
.Call('pander_tableExpand_cpp', PACKAGE = 'pander', cells, cols.width, justify, sep.cols, style)
}

Expand Down

0 comments on commit 06c2f65

Please sign in to comment.