Method: IsoDoc::PresentationXMLConvert#lower2cap

Defined in:
lib/isodoc/presentation_function/block.rb

#lower2cap(text) ⇒ Object



7
8
9
10
# File 'lib/isodoc/presentation_function/block.rb', line 7

def lower2cap(text)
  /^[[:upper:]][[:upper:]]/.match?(text) and return text
  text.capitalize
end