module Rabbit::HTML
Public Instance Methods
a_link(start_a, label, label_only)
click to toggle source
# File lib/rabbit/utils.rb, line 429 def a_link(start_a, label, label_only) result = "[" result << start_a unless label_only result << label result << "</a>" unless label_only result << "]" result end