/**
  * Creates a Chunk using the factory.
  *
  * @param content the content of the chunk
  * @return a Chunk with content
  * @since 5.0.6
  */
 public Chunk createChunk(final String content) {
   return factory.createChunk(content, chain);
 }