/**
   * get the file document content of a region
   *
   * @param regionName the regionName
   * @return document Content content
   * @throws CollabException
   */
  public String getContent(String regionName) throws CollabException {
    StyledDocument fileDocument = getDocument();
    CollabRegion region = getRegion(regionName);

    return region.getContent();
  }