Sha256: c17b92dd0d7bc9fd4c31c2bc75e730e6d57f2d13c492cc1d8f98ea01ec5d86df
Contents?: true
Size: 1.16 KB
Versions: 70
Compression:
Stored size: 1.16 KB
Contents
# HTML writer # locale # History: # Stan Smith 2017-03-24 original script module ADIWG module Mdtranslator module Writers module Html class Html_Locale def initialize(html) @html = html end def writeHtml(hLocale) # locale - language code unless hLocale[:languageCode].nil? @html.em('Language Code: ') @html.text!(hLocale[:languageCode]) @html.br end # locale - country code unless hLocale[:countryCode].nil? @html.em('Country Code: ') @html.text!(hLocale[:countryCode]) @html.br end # locale - characterEncoding unless hLocale[:characterEncoding].nil? @html.em('Character Encoding: ') @html.text!(hLocale[:characterEncoding]) @html.br end end # writeHtml end # Html_Locale end end end end
Version data entries
70 entries across 70 versions & 1 rubygems