src/main/java/org/apache/tomee/website/AddBacktickToAnnotations.java [39:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void main(String[] args) throws Exception {

        final File docs = new File("repos/tomee-8.0/docs/");

        Files.walk(docs.toPath())
             .map(Path::toFile)
             .filter(File::isFile)
             .filter(path -> path.getName().endsWith(".adoc"))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/tomee/website/GuessAsciidocCodeblockLanguage.java [37:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void main(String[] args) throws Exception {

        final File docs = new File("repos/tomee-8.0/docs/");

        Files.walk(docs.toPath())
                .map(Path::toFile)
                .filter(File::isFile)
                .filter(path -> path.getName().endsWith(".adoc"))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



