Class: Aozora2Html::Tag::Jizume
- Inherits:
-
Indent
- Object
- Aozora2Html::Tag
- Block
- Indent
- Aozora2Html::Tag::Jizume
- Includes:
- Multiline
- Defined in:
- lib/aozora2html/tag/jizume.rb
Overview
字詰め用
Instance Method Summary collapse
-
#initialize(parser, width) ⇒ Jizume
constructor
A new instance of Jizume.
- #to_s ⇒ Object
Methods inherited from Block
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_s ⇒ Object
14 15 16 |
# File 'lib/aozora2html/tag/jizume.rb', line 14 def to_s "<div class=\"jizume_#{@w}\" style=\"width: #{@w}em\">" end |