class REHTML::Tag

Attributes

attributes[R]
name[R]

Public Class Methods

new(name,attributes,empty) click to toggle source
# File lib/rehtml/elements.rb, line 14
def initialize(name,attributes,empty)
  @name = name
  @attributes = attributes
  @empty = empty
end

Public Instance Methods

empty?() click to toggle source
# File lib/rehtml/elements.rb, line 19
def empty?
  @empty
end