class ContentNode

Attributes

html[R]
type[R]

Public Class Methods

new(node) click to toggle source
# File lib/zarchitect/content.rb, line 282
def initialize(node)
  @type = node.name
  @html = node.to_html
end