Sha256: 18069c5812677df16c5f3b02819291c9e56ececa60c45dd1a2c8d10aabe932c7
Contents?: true
Size: 349 Bytes
Versions: 214
Compression:
Stored size: 349 Bytes
Contents
$ ruby example10.rb _buf = ''; _buf << '<?xml version="1.0" ?> '; lang = 'en' list = ['<aaa>', 'b&b', '"ccc"'] _buf << '<html lang="'; _buf << (lang).to_s; _buf << '"> <body> <ul> '; for item in list _buf << ' <li>'; _buf << Erubis::XmlHelper.escape_xml(item); _buf << '</li> '; end _buf << ' </ul> </body> </html> '; _buf.to_s
Version data entries
214 entries across 188 versions & 44 rubygems