Sha256: 44d746be414d389a919123df9cda3089935c44c0ed5eb5582df5e1c68e571b0b
Contents?: true
Size: 925 Bytes
Versions: 55
Compression:
Stored size: 925 Bytes
Contents
# HTML writer # resource format # History: # Stan Smith 2015-03-24 original script module ADIWG module Mdtranslator module Writers module Html class MdHtmlResourceFormat def initialize(html) @html = html end def writeHtml(hResFormat) # resource format - name - required unless hResFormat[:formatName].nil? @html.em('Resource Format: ') @html.text!(hResFormat[:formatName]) end # resource format - version unless !hResFormat[:formatVersion].nil? @html.em(' Version: ') @html.text!(hResFormat[:formatVersion]) end @html.br end # writeHtml end # class end end end end
Version data entries
55 entries across 55 versions & 1 rubygems