Skip to content

Instantly share code, notes, and snippets.

@siyo
Last active December 13, 2015 18:08
Show Gist options
  • Save siyo/4953058 to your computer and use it in GitHub Desktop.
Save siyo/4953058 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# nikkei taisaku plugin
#
# gem install moji
#
# e.g. http://www.google.com/ => http://www.google.com/
#
require 'moji'
Earthquake.init do
output_filter do |item|
next unless item["text"]
item["text"] = Moji.normalize_zen_han(item["text"])
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment