Class: Aozora2Html::Tag::Jizume

Inherits:
Indent show all
Includes:
Multiline
Defined in:
lib/aozora2html/tag/jizume.rb

Overview

字詰め用

Instance Method Summary collapse

Methods inherited from Block

#close_tag

Methods inherited from Aozora2Html::Tag

#char_type, #inspect, #syntax_error

Constructor Details

#initialize(parser, width) ⇒ Jizume

Returns a new instance of Jizume.



9
10
11
12
# File 'lib/aozora2html/tag/jizume.rb', line 9

def initialize(parser, width)
  @w = width
  super
end

Instance Method Details

#to_sObject



14
15
16
# File 'lib/aozora2html/tag/jizume.rb', line 14

def to_s
  "<div class=\"jizume_#{@w}\" style=\"width: #{@w}em\">"
end