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