Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warning about UTF-8 with roxygen2

I have a problem about UTF-8. After conducting roxygen2::roxygenise() for my package, it showed the warning message 'roxygen2 requires Encoding: UTF-8'. How can I fix it?

roxygen2::roxygenise()  >     Writing NAMESPACE >      >     Loading ABXTT >      >     Writing NAMESPACE >      >     Warning message: >      >     roxygen2 requires Encoding: UTF-8 
like image 870
Lann Avatar asked Aug 05 '18 13:08

Lann


1 Answers

Add:

Encoding: UTF-8 

to your DESCRIPTION file.

like image 88
James Melville Avatar answered Oct 04 '22 10:10

James Melville