String options = chunk.getOptions();
String language = detectLanguage(options);
List<Integer> highlights = detectHighlights(options);
boolean numbered = options.contains("#");
SimpleIndentator simpleIndentator = new SimpleIndentator(2);
String indentedCode = simpleIndentator.indent(chunk.getContent());
String label = matchLabel(options);
String pygmentsOptions = codeTagOptionsParser.parsePygmentsOptions(options);
String code = htmlCodeHighlighter.highlight(indentedCode, language, numbered, highlights, pygmentsOptions);