class Smartdown::Parser::InputData

Attributes

content[R]
name[R]

Public Class Methods

new(name, content) click to toggle source
# File lib/smartdown/parser/input_set.rb, line 18
def initialize(name, content)
  @name = name
  @content = content
end

Public Instance Methods

read() click to toggle source
# File lib/smartdown/parser/input_set.rb, line 23
def read
  content
end