Sha256: 3ef5a12fa2def0d83309a0a2dd4de047e48f7a5614b2dc47046351c01760745c
Contents?: true
Size: 1.16 KB
Versions: 33
Compression:
Stored size: 1.16 KB
Contents
# HTML writer # process step report # History: # Stan Smith 2019-09-24 original script module ADIWG module Mdtranslator module Writers module Html class Html_ProcessStepReport def initialize(html) @html = html end def writeHtml(hReport) # process step report - name unless hReport[:name].nil? @html.em('Name: ') @html.text!(hReport[:name]) @html.br end # process step report - description unless hReport[:description].nil? @html.em('Description: ') @html.text!(hReport[:description]) @html.br end # process step report - file type unless hReport[:fileType].nil? @html.em('File Type: ') @html.text!(hReport[:fileType]) @html.br end end # writeHtml end # Html_ProcessStepReport end end end end
Version data entries
33 entries across 33 versions & 1 rubygems