struct Poor::PlainText

Defined in:

markup.cr

Constructors

Instance Method Summary

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

def self.new(text : String) #

[View source]

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)"

[View source]
def pretty_print(pp : PrettyPrint) #
Description copied from class Object

Pretty prints self into the given printer.

By default appends a text that is the result of invoking #inspect on self. Subclasses should override for custom pretty printing.


[View source]
def text(io : IO) #

[View source]