module RubyXL

def self.from_root(path)

Convert any path passed to absolute path (within the XLSX file).
def self.from_root(path)
  return path unless path.absolute?
  path.relative_path_from(OOXMLTopLevelObject::ROOT)
end