Skip to content

Instantly share code, notes, and snippets.

@coffeejunk
Created July 30, 2012 14:22
Show Gist options
  • Save coffeejunk/3207305 to your computer and use it in GitHub Desktop.
Save coffeejunk/3207305 to your computer and use it in GitHub Desktop.
iso2utf8
File.open("vorlage_iso.tex", 'w') do |f|
File.open("vorlage_utf8.tex", "r:iso-8859-1:utf-8").each_line do |l|
f.puts l.force_encoding 'utf-8'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment