class Mustache::Parser

def otag=(value)

The opening tag delimiter. This may be changed at runtime.
def otag=(value)
  regex = regexp value
  @otag_regex     = /([ \t]*)?#{regex}/
  @otag_not_regex = /(^[ \t]*)?#{regex}/
  @otag = value
end