I have created a xml doc with Nokogiri: Nokogiri::XML::Document
The header of my file is <?xml version="1.0"?> but I'd expect to have <?xml version="1.0" encoding="UTF-8"?>. Is there any options I could use so the encoding appears ?
|
|
|
Are you using Nokogiri XML Builder? You can pass an encoding option to the new() method:
Also this page says you can do the following (when not using Builder):
Presumably you could change 'EUC-JP' to 'UTF-8'. |
||||
|
|
|
When parsing the doc you can set the encoding like this:
For me that returns
|
|||
|