private void outputFormatted()

in src/main/java/org/apache/sling/tooling/lc/LaunchpadComparer.java [125:135]


    private void outputFormatted(Artifact a) {
        if (isMarkdown()) {
            System.out.format(
                    "* `%s`:**`%s`** %s%n",
                    a.getId().getGroupId(), a.getId().getArtifactId(), a.getId().getVersion());
        } else {
            System.out.format(
                    "    %-30s : %-55s : %s%n",
                    a.getId().getGroupId(), a.getId().getArtifactId(), a.getId().getVersion());
        }
    }