public Chunk createChunk(String options, String content) {
int maxLineLength = Utilities.maxLineLength(content) - Utilities.getMinIndent(content);
if(maxLineLength >TubainaBuilder.getCodeLength())
throw new TubainaException ("Chapter " + ChapterBuilder.getChaptersCount() +
" - Code has " + maxLineLength + " columns out of " + TubainaBuilder.getCodeLength() + ":\n\n" + content);
return new XmlChunk(options, content);
}