Sha256: 03fcd2266a9ac33d4ebb4eff533f716de8c1a7c7e63f3b7752cb9e0c1c987389
Contents?: true
Size: 1.54 KB
Versions: 70
Compression:
Stored size: 1.54 KB
Contents
# HTML writer # scope description # History: # Stan Smith 2017-04-05 original script module ADIWG module Mdtranslator module Writers module Html class Html_ScopeDescription def initialize(html) @html = html end def writeHtml(hDescription) # scope description - dataset unless hDescription[:dataset].nil? @html.em('Dataset(s) to which Scope applies: ') @html.text!(hDescription[:dataset]) @html.br end # scope description - attributes unless hDescription[:attributes].nil? @html.em('Attributes(s) to which Scope applies: ') @html.text!(hDescription[:attributes]) @html.br end # scope description - features unless hDescription[:features].nil? @html.em('Features(s) to which Scope applies: ') @html.text!(hDescription[:features]) @html.br end # scope description - other unless hDescription[:other].nil? @html.em('Other item(s) to which Scope applies: ') @html.text!(hDescription[:other]) @html.br end end # writeHtml end # Html_ScopeDescription end end end end
Version data entries
70 entries across 70 versions & 1 rubygems