Asciidoc 문법
소스코드
 ----
 [source,java]
 .HelloWorld.java
 ----
 class HelloWorld {
     public static void main(String[] args) {
         System.out.println("Hello World");
     }
 }
 ----HelloWorld.java
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}Quotes
It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness…
— Charles Dickens
A Tale of Two Cities
A Tale of Two Cities
Markdown to Asciidoc
$ pandoc README.me > README.adoc