Method: IsoDoc::Function::References#unbracket
- Defined in:
- lib/isodoc/function/references.rb
#unbracket(ident) ⇒ Object
99 100 101 102 103 104 105 |
# File 'lib/isodoc/function/references.rb', line 99 def unbracket(ident) if ident.respond_to?(:size) ident.map { |x| unbracket1(x) }.join(" / ") else unbracket1(ident) end end |