Class: Aozora2Html::Tag::Okurigana

Inherits:
Kunten show all
Defined in:
lib/aozora2html/tag/okurigana.rb

Overview

訓点送り仮名用

Instance Method Summary collapse

Methods inherited from Kunten

#char_type

Methods inherited from Aozora2Html::Tag

#char_type, #inspect, #syntax_error

Constructor Details

#initialize(parser, string) ⇒ Okurigana

Returns a new instance of Okurigana.



7
8
9
10
# File 'lib/aozora2html/tag/okurigana.rb', line 7

def initialize(parser, string)
  @string = string
  super
end

Instance Method Details

#to_sObject



12
13
14
# File 'lib/aozora2html/tag/okurigana.rb', line 12

def to_s
  "<sup class=\"okurigana\">#{@string}</sup>"
end