Method: IsoDoc::Function::Blocks#permission_parse
- Defined in:
- lib/isodoc/function/reqt.rb
#permission_parse(node, out) ⇒ Object
67 68 69 70 71 72 73 74 75 |
# File 'lib/isodoc/function/reqt.rb', line 67 def (node, out) out.div **{ class: "permission" } do |t| recommendation_name(node, t, ) recommendation_attributes(node, out) node.children.each do |n| parse(n, t) unless %w(label title).include? n.name end end end |