module TomlRB::MultilineLiteral

def value

def value
  return "" if captures[:text].empty?
  aux = captures[:text].first.value
  aux.gsub(/\\\r?\n[\n\t\r ]*/, "")
end