Sha256: 489ff976219f43f916b154b381eba29f1d07cd5ee7b97c5cb3de1c8c44e252ee
Contents?: true
Size: 708 Bytes
Versions: 7
Compression:
Stored size: 708 Bytes
Contents
# -*- coding: utf-8 -*- # # 対象小説情報 # タイトル: ログ・ホライズン # 作者: 橙乃ままれ # URL: http://ncode.syosetu.com/n8725k/ # converter "n8725k ログ・ホライズン" do def before(io, element_type) super end def after(io, element_type) data = io.string if element_type == "body" if data =~ /[||]([^《]+)《(、+)》/ if $1.length == $2.length data.gsub!(/[||]([^《]+)《(、+)》/) do |match| "[#傍点]" + $1 + "[#傍点終わり]" end end end data.gsub!("ルビ:", "") data.gsub!("ロエ二", "ロエ2") end io end end
Version data entries
7 entries across 7 versions & 1 rubygems