Method: IsoDoc::Function::References#unbracket
- Defined in:
- lib/isodoc/function/references.rb
#unbracket(ident) ⇒ Object
81 82 83 84 85 86 87 |
# File 'lib/isodoc/function/references.rb', line 81 def unbracket(ident) if ident.respond_to?(:size) ident.map { |x| unbracket1(x) }.join(" / ") else unbracket1(ident) end end |