You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing encoding problems which I believe are a combined issue of Windows and render_diff's way of generating the html file.
render_diff seems to be generating the html file by setting the encoding to utf-8 as standard. On windows machines, this does not seem to work, as the data written to the disk is encoded as ANSI.
My workaround has been to change the encoding details in the html-file:
render_diff(changes, file = write_file, view = FALSE)
# reopen file and replace encoding details
x <- readLines(write_file)
y <- gsub( "<meta charset='utf-8'>", "<meta charset='ANSI'>", x )
cat(y, file=write_file, sep="\n")
While it works, it might be nice to have this fixed, since daff is very useful. I have not been able to identify the exact location of the bug, hence this description.
This appears to be derived from the use of sQuotehere:
title <- paste(sQuote(s$source_name), "vs.", sQuote(s$target_name))`
A simple solution to this (although @michaelgasser's solution certainly does the trick) is to override the default quoting behavior before running render_diff via options(useFancyQuotes = F) as mentioned in the sQuotedocumentation
I am experiencing encoding problems which I believe are a combined issue of Windows and
render_diff
's way of generating the html file.render_diff
seems to be generating the html file by setting the encoding to utf-8 as standard. On windows machines, this does not seem to work, as the data written to the disk is encoded as ANSI.My workaround has been to change the encoding details in the html-file:
While it works, it might be nice to have this fixed, since
daff
is very useful. I have not been able to identify the exact location of the bug, hence this description.Here is an example on Windows (Daff v0.3.0):
The text was updated successfully, but these errors were encountered: