First post
Here’s a quick demo of a few features from AsciiDoc.
Including an image
Showing code
The code can be included as an inline snippet such as this
.
Code blocks are also available:
This is an optional code block title
package org.acme;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!"); (1)
}
}
1 | Callouts can be used to provide additional information about a specific line of code. |
Did you notice the |
Drawing the reader’s attention with admonitions
This is a |
This is a |
This is a |
This is an |
This is a |
Learn more about admonitions in Asciidoctor Docs.