class ADIWG::Mdtranslator::Writers::Html::Html_ScopeDescription
Public Class Methods
new(html)
click to toggle source
# File lib/adiwg/mdtranslator/writers/html/sections/html_scopeDescription.rb, line 14 def initialize(html) @html = html end
Public Instance Methods
writeHtml(hDescription)
click to toggle source
# File lib/adiwg/mdtranslator/writers/html/sections/html_scopeDescription.rb, line 18 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