Module: Jekyll::Underscorify

Defined in:
jekyll/_plugins/underscorify.rb

Instance Method Summary collapse

Instance Method Details

#underscorify(input) ⇒ Object



14
15
16
17
18
19
20
# File 'jekyll/_plugins/underscorify.rb', line 14

def underscorify(input)
    if (input != nil)
        (input.downcase).tr(' ', '_')
    else
        return nil
    end
end