Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
kramdown/lib/kramdown/utils.rb
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
46 lines (38 sloc)
1.25 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
#-- | |
# Copyright (C) 2009-2016 Thomas Leitner <t_leitner@gmx.at> | |
# | |
# This file is part of kramdown which is licensed under the MIT. | |
#++ | |
# | |
module Kramdown | |
# == \Utils Module | |
# | |
# This module contains utility class/modules/methods that can be used by both parsers and | |
# converters. | |
module Utils | |
autoload :Entities, 'kramdown/utils/entities' | |
autoload :Html, 'kramdown/utils/html' | |
autoload :OrderedHash, 'kramdown/utils/ordered_hash' | |
autoload :Unidecoder, 'kramdown/utils/unidecoder' | |
autoload :StringScanner, 'kramdown/utils/string_scanner' | |
autoload :Configurable, 'kramdown/utils/configurable' | |
autoload :LRUCache, 'kramdown/utils/lru_cache' | |
# Treat +name+ as if it were snake cased (e.g. snake_case) and camelize it (e.g. SnakeCase). | |
def self.camelize(name) | |
name.split('_').inject('') {|s,x| s << x[0..0].upcase << x[1..-1] } | |
end | |
# Treat +name+ as if it were camelized (e.g. CamelizedName) and snake-case it (e.g. camelized_name). | |
def self.snake_case(name) | |
name = name.dup | |
name.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2') | |
name.gsub!(/([a-z])([A-Z])/,'\1_\2') | |
name.downcase! | |
name | |
end | |
def self.deep_const_get(str) | |
::Object.const_get(str) | |
end | |
end | |
end |