Sha256: be0708e37e665ff2da740cdc1f82ff17c0428beabb4ea3e0936d8a9f27790459
Contents?: true
Size: 700 Bytes
Versions: 1
Compression:
Stored size: 700 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 "[#傍点]" + $1 + "[#傍点終わり]" end end end data.gsub!("ルビ:", "") data.gsub!("ロエ二", "ロエ2") end io end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
narou-1.7.1 | preset/ncode.syosetu.com/n8725k/converter.rb |