}
}
}
// Process the unzipped guide through asciidoctor, rendering HTML content
Attributes attributes = new Attributes();
attributes.setAllowUriRead(true);
attributes.setSkipFrontMatter(true);
File readmeAdocFile = new File(unzippedRoot.getAbsolutePath() + File.separator + "README.adoc");
String rawHtmlContent = asciidoctor.renderFile(
readmeAdocFile,
OptionsBuilder.options().safe(SafeMode.SAFE).attributes(attributes).headerFooter(true));