summaryrefslogtreecommitdiff
path: root/htmlentities
blob: f3c2d347fea896d238b7e3061cca646bf1792c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/ruby

require 'htmlentities'

STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'


coder = HTMLEntities.new

while line = STDIN.gets
  puts coder.decode(line.strip)
end