Method: IsoDoc::Function::Blocks#annotation_parse
- Defined in:
- lib/isodoc/function/blocks.rb
#annotation_parse(node, out) ⇒ Object
95 96 97 98 99 100 101 102 103 |
# File 'lib/isodoc/function/blocks.rb', line 95 def annotation_parse(node, out) dl = node.at(ns("./dl")) or return @sourcecode = false # @annotation = true out.div class: "annotation" do |div| parse(dl, div) # @annotation = false end end |