Comments

On this page, you’ll learn:

  • How write a comment line or block in an AsciiDoc file.

Comment syntax

You can use a comment line or comment block when you want to add text to an AsciiDoc source file, but don’t want that text to be displayed when the file is converted to an HTML page.

A comment line is denoted by two consecutive forward slashes (//).

Example 1. Comment line syntax
// This is a line that is commented out.

A comment block is delimited by a set of four consecutive forward slashes (////).

Example 2. Comment block syntax
////
This is a comment block.

All of the text, including any AsciiDoc syntax, won't be visible when the file is converted to HTML.
////