Sha256: 7827af24037e2f7e273f992fd74b5eed5c8eda58754ea728b776c9e00e3c95fe
Contents?: true
Size: 784 Bytes
Versions: 17
Compression:
Stored size: 784 Bytes
Contents
# HTML writer # resource type # History: # Stan Smith 2017-05-24 Fixed problem with nil name # Stan Smith 2015-03-25 original script module ADIWG module Mdtranslator module Writers module Html class Html_ResourceType def initialize(html) @html = html end def writeHtml(hType) # resource type @html.em('Resource Type: ') @html.text!(hType[:type]) unless hType[:name].nil? @html.em(' Name: ') @html.text!(hType[:name]) end @html.br end # writeHtml end # Html_ResourceType end end end end
Version data entries
17 entries across 17 versions & 1 rubygems