Skip to content

Commit

Permalink
Workaround for encondig issue Rapporter#296
Browse files Browse the repository at this point in the history
  • Loading branch information
dcomtois committed Dec 26, 2018
1 parent 7bfa09b commit e2939e0
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 @@ -640,6 +640,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 e2939e0

Please sign in to comment.