Class Texy::Modules::TableElement
In: lib/texy/modules/table.rb
Parent: BlockElement

Html element table

Methods

Attributes

caption  [RW] 

Public Class methods

[Source]

# File lib/texy/modules/table.rb, line 180
            def initialize(texy)
                super
                self.tag = 'table'
            end

Protected Instance methods

[Source]

# File lib/texy/modules/table.rb, line 186
                def generate_content
                    html = super

                    html = caption.to_html + html if caption
                    html
                end

[Validate]