module Tabl::Formats::Html
Public Class Methods
default_value()
click to toggle source
# File lib/tabl/formats/html.rb, line 6 def self.default_value '-' end
format(value)
click to toggle source
# File lib/tabl/formats/html.rb, line 10 def self.format(value) ERB::Util.h(value) end