Sha256: 063d311adb9ecc96e6a07c584b193550e670ba5aeeecdbe2df4714279d6ac3b8
Contents?: true
Size: 1.2 KB
Versions: 68
Compression:
Stored size: 1.2 KB
Contents
# -*- 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. #++ # # This file is based on code originally from the Stringex library and needs the data files from # Stringex to work correctly. module Kramdown module Utils # Provides the ability to tranliterate Unicode strings into plain ASCII ones. module Unidecoder gem 'stringex' if defined?(Gem) path = $:.find {|dir| File.directory?(File.join(File.expand_path(dir), "stringex", "unidecoder_data"))} if RUBY_VERSION <= '1.8.6' || !path def self.decode(string) string end else CODEPOINTS = Hash.new do |h, k| h[k] = YAML.load_file(File.join(path, "stringex", "unidecoder_data", "#{k}.yml")) end # Transliterate string from Unicode into ASCII. def self.decode(string) string.gsub(/[^\x00-\x7f]/u) do |codepoint| begin unpacked = codepoint.unpack("U")[0] CODEPOINTS["x%02x" % (unpacked >> 8)][unpacked & 255] rescue "?" end end end end end end end
Version data entries
68 entries across 65 versions & 16 rubygems