Method: IsoDoc::Function::References#date_note_process
- Defined in:
- lib/isodoc/function/references.rb
#date_note_process(bib, ref) ⇒ Object
127 128 129 130 131 132 133 |
# File 'lib/isodoc/function/references.rb', line 127 def date_note_process(bib, ref) date_note = bib.at(ns("./note[@type = 'Unpublished-Status']")) return if date_note.nil? date_note.children = "<p>#{date_note.content}</p>" footnote_parse(date_note, ref) end |