AsciiDoc Markup Syntax Quick Summary


Table of Contents

AsciiDoc Markup 
Text formatting 
Document header 
Section title underlines 
Section title (level 1) 
Section title (level 2) 
Paragraphs 
Default Paragraph
Literal Paragraph
Admonition Paragraphs
Comment Lines
Delimited blocks 
Admonition Blocks
More block elements 
More inline elements 
Document links 
URLs 
Images 
AsciiDoc Advanced Syntax 
Text Formatting 
Superscripts and Subscripts
Line Breaks (HTML/XHTML)
Rulers (HTML/XHTML)
Lists
Bulleted and Numbered Lists
List Item Continuation
List Block
Vertical Labeled Lists
Horizontal Labeled Lists
Question and Answer Lists
Glossary Lists
Bibliography Lists
Tables
Example Tables
Macros
Inline Macros
Filters
Filter Search Paths
Filter Configuration Files
Code Filter

AsciiDoc Markup 

A summary of the most often used markup. For a complete reference see the AsciiDoc User Guide.

Text formatting 

'emphasized text'           (normally italics)
*bold text*                 (boldface font)
`monospaced text`           (proportional font)

emphasized text (normally italics) bold text (boldface font) monospaced text (proportional font)

Document header 

The Document Title
==================
author <email>            (optional)
revision, date            (optional)

Section title underlines 

Level 0 (document title):  ======================
Level 1:                   ----------------------
Level 2:                   ~~~~~~~~~~~~~~~~~~~~~~
Level 3:                   ^^^^^^^^^^^^^^^^^^^^^^
Level 4 (bottom level):    ++++++++++++++++++++++

One line titles 

One line titles consist of a line starting with one or more equals characters (the number of equals corresponds the section level) followed by a space followed by the title text. Here are some examples:

= Document Title (level 0)
== Section title (level 1)
=== Section title (level 2)
==== Section title (level 3)
===== Section title (level 4)