Class: Livetext::Functions

Inherits:
Object
  • Object
show all
Defined in:
lib/liveblog.rb,
lib/liveblog.rb

Overview

experimental…

Instance Method Summary collapse

Instance Method Details

#_var(name) ⇒ Object



671
672
673
# File 'lib/liveblog.rb', line 671

def _var(name)
  ::Livetext::Vars[name] || "[:#{name} is undefined]"
end

#br(n = "1") ⇒ Object



644
645
646
647
648
649
# File 'lib/liveblog.rb', line 644

def br(n="1")
  # Thought: Maybe make a way for functions to "simply" call the
  #   dot command of the same name?? Is this trivial??
  n = n.empty? ? 1 : n.to_i
  "<br>"*n
end

#h1(param) ⇒ Object



651
# File 'lib/liveblog.rb', line 651

def h1(param); "<h1>#{param}</h1>"; end

#h2(param) ⇒ Object



652
# File 'lib/liveblog.rb', line 652

def h2(param); "<h2>#{param}</h2>"; end

#h3(param) ⇒ Object



653
# File 'lib/liveblog.rb', line 653

def h3(param); "<h3>#{param}</h3>"; end

#h4(param) ⇒ Object



654
# File 'lib/liveblog.rb', line 654

def h4(param); "<h4>#{param}</h4>"; end

#h5(param) ⇒ Object



655
# File 'lib/liveblog.rb', line 655

def h5(param); "<h5>#{param}</h5>"; end

#h6(param) ⇒ Object



656
# File 'lib/liveblog.rb', line 656

def h6(param); "<h6>#{param}</h6>"; end

#hr(param = nil) ⇒ Object



658
659
660
# File 'lib/liveblog.rb', line 658

def hr(param=nil)
  $Dot.hr
end

#image(param) ⇒ Object



662
663
664
# File 'lib/liveblog.rb', line 662

def image(param)
  "<img src='#{param}'></img>"
end