struct Poor::Preformatted
- Poor::Preformatted
- Poor::Markup
- Struct
- Value
- Object
Defined in:
markup.crConstructors
Instance Method Summary
-
#inspect(io : IO)
Appends this struct's name and instance variables names and values to the given IO.
-
#pretty_print(pp : PrettyPrint)
Pretty prints
self
into the given printer. - #text(io : IO)
Instance methods inherited from struct Poor::Markup
children
children,
each(&)each each, each_end(&)
each_end each_end, each_recursive(&)
each_recursive each_recursive, each_start(&)
each_start each_start, each_start_end(&)
each_start_end each_start_end, each_token(&) each_token, initialize initialize, inspect(io : IO) inspect, map_recursive!(&func : Markup -> Markup) map_recursive!, pretty_print(pp : PrettyPrint) pretty_print, size size, text(io : IO)
text text, to_ansi(io : IO)
to_ansi to_ansi, to_html(io : IO)
to_html to_html, unsafe_fetch(index : Int) unsafe_fetch, unsafe_put(index : Int, value : Markup) unsafe_put
Constructor methods inherited from struct Poor::Markup
new
new
Constructor Detail
Instance Method Detail
def inspect(io : IO)
#
Description copied from struct Struct
Appends this struct's name and instance variables names and values to the given IO.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p1.to_s # "Point(@x=1, @y=2)"
p1.inspect # "Point(@x=1, @y=2)"