Method: Sufia::CitationsBehaviors::TitleBehavior#mla_citation_title

Defined in:
app/helpers/sufia/citations_behaviors/title_behavior.rb

#mla_citation_title(title_text) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'app/helpers/sufia/citations_behaviors/title_behavior.rb', line 20

def mla_citation_title(title_text)
  process_title_parts(title_text) do |w|
    if TITLE_NOCAPS.include? w
      w
    else
      w.capitalize
    end
  end
end