File |
Line |
com/varmateo/yawg/asciidoctor/AsciidoctorPageBaker.java |
58 |
com/varmateo/yawg/commonmark/CommonMarkPageBaker.java |
68 |
return new AsciidoctorPageBaker();
}
/**
* {@inheritDoc}
*/
@Override
public String shortName() {
return NAME;
}
/**
* Checks if the given file name has one of the known extensions.
*
* <p>The following extensions will be allowed:</p>
*
* <ul>
* <li>.adoc</li>
* </ul>
*
* @return True if the given file name has one of the allowed
* extensions.
*/
@Override
public boolean isBakeable(final Path path) {
return FileUtils.isNameMatch(path, RE_ADOC);
}
/**
* Converts the given text file in Asciidoc format into an HTML
* file.
*
* <p>The target directory must already exist. Otherwise an
* exception will be thrown.</p>
*
* @param sourcePath The file to be baked.
*
* @param context Provides the template for generating the target
* document. If no template is provided, then the default
* AsciidoctorJ document generator will be used.
*
* @param targetDir The directory where the source file will be
* copied to.
*
* @return A result signaling success of failure.
*/
@Override
public PageBakeResult bake(
final Path sourcePath,
final PageContext context,
final Path targetDir) {
final Try<Void> result = doBake(sourcePath, context, targetDir);
return PageBakeResults.fromTry(result);
}
/**
*
*/
private Try<Void> doBake(
final Path sourcePath,
final PageContext context,
final Path targetDir) {
final Path targetPath = getTargetPath(sourcePath, targetDir);
final Optional<Template> template = context.templateFor(sourcePath);
final Try<Void> result;
if ( template.isPresent() ) {
result = doBakeWithTemplate(
sourcePath,
context,
targetDir,
targetPath,
template.get());
} else {
result = doBakeWithoutTemplate(
sourcePath, |
File |
Line |
com/varmateo/yawg/asciidoctor/AsciidoctorPageBaker.java |
87 |
com/varmateo/yawg/commonmark/CommonMarkPageBaker.java |
97 |
com/varmateo/yawg/html/HtmlPageBaker.java |
81 |
return FileUtils.isNameMatch(path, RE_ADOC);
}
/**
* Converts the given text file in Asciidoc format into an HTML
* file.
*
* <p>The target directory must already exist. Otherwise an
* exception will be thrown.</p>
*
* @param sourcePath The file to be baked.
*
* @param context Provides the template for generating the target
* document. If no template is provided, then the default
* AsciidoctorJ document generator will be used.
*
* @param targetDir The directory where the source file will be
* copied to.
*
* @return A result signaling success of failure.
*/
@Override
public PageBakeResult bake(
final Path sourcePath,
final PageContext context,
final Path targetDir) {
final Try<Void> result = doBake(sourcePath, context, targetDir);
return PageBakeResults.fromTry(result);
}
/**
*
*/
private Try<Void> doBake(
final Path sourcePath,
final PageContext context,
final Path targetDir) {
final Path targetPath = getTargetPath(sourcePath, targetDir);
final Optional<Template> template = context.templateFor(sourcePath);
final Try<Void> result;
if ( template.isPresent() ) {
result = doBakeWithTemplate(
sourcePath,
context, |