Method: IsoDoc::PresentationXMLConvert#related1
- Defined in:
- lib/isodoc/presentation_function/concepts.rb
#related1(node) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/isodoc/presentation_function/concepts.rb', line 102 def (node) p, ref, orig = (node) label = @i18n.[orig["type"]].upcase if p && ref node.children =(l10n("<p><strong>#{label}:</strong> " \ "<em>#{to_xml(p)}</em> (#{Common::to_xml(ref)})</p>")) else node.children = (l10n("<p><strong>#{label}:</strong> " \ "<strong>**RELATED TERM NOT FOUND**</strong></p>")) end end |