class Kramdown::Converter::Latex

def normalize_abbreviation_key(key)

Normalize the abbreviation key so that it only contains allowed ASCII character
def normalize_abbreviation_key(key)
  key.gsub(/\W/) {|m| m.unpack('H*').first}
end