abstract struct Poor::Markup

Overview

Abstract representation of a marked-up text.

Included Modules

Direct Known Subclasses

Defined in:

markup.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new #

[View source]

Instance Method Detail

def children #

[View source]
def each(&) #
Description copied from module Indexable(Poor::Markup)

Calls the given block once for each element in self, passing that element as a parameter.

a = ["a", "b", "c"]
a.each { |x| print x, " -- " }

produces:

a -- b -- c --

[View source]
def each #
Description copied from module Indexable(Poor::Markup)

Returns an Iterator for the elements of self.

a = ["a", "b", "c"]
iter = a.each
iter.next # => "a"
iter.next # => "b"

The returned iterator keeps a reference to self: if the array changes, the returned values of the iterator change as well.


[View source]
def each_end(&) #

[View source]
def each_end #

[View source]
def each_recursive(&) #

[View source]
def each_recursive #

[View source]
def each_start(&) #

[View source]
def each_start #

[View source]
def each_start_end(&) #

[View source]
def each_start_end #

[View source]
def each_token(&) #

[View source]
def initialize #

[View source]
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 map_recursive!(&func : Markup -> Markup) #

[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 size #
Description copied from module Indexable(Poor::Markup)

Returns the number of elements in this container.


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

[View source]
def text #

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

Converts the rich text into text with ANSI escape codes for display in terminal.


[View source]
def to_ansi #

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

[View source]
def to_html #

[View source]
def unsafe_fetch(index : Int) #
Description copied from module Indexable(Poor::Markup)

Returns the element at the given index, without doing any bounds check.

Indexable makes sure to invoke this method with index in 0...size, so converting negative indices to positive ones is not needed here.

Clients never invoke this method directly. Instead, they access elements with #[](index) and #[]?(index).

This method should only be directly invoked if you are absolutely sure the index is in bounds, to avoid a bounds check for a small boost of performance.


[View source]
def unsafe_put(index : Int, value : Markup) #
Description copied from module Indexable::Mutable(Poor::Markup)

Sets the element at the given index to value, without doing any bounds check.

Indexable::Mutable makes sure to invoke this method with index in 0...size, so converting negative indices to positive ones is not needed here.

Clients never invoke this method directly. Instead, they modify elements with #[]=(index, value).

This method should only be directly invoked if you are absolutely sure the index is in bounds, to avoid a bounds check for a small boost of performance.


[View source]