` to set indentation mode, or
indentation may be set for a single paragraph using an explicit `
` tag.---To change the default indentation of a whole document, set
the `class` [metadata field](#metadata) (if unset, `book` is assumed).
If you want to insert a blank space between paragraph, without affecting the
indentation (like a scene break in a book) you can either insert an
`
` tag between them, or, for a longer break with a horizontal ruler,
use a [Markdown dinkus][Markdown dinkus].
* `book`---*Book indent* (default). Indent the first line of each paragraph
(except in a paragraph directly after heading, table, image or other matter).
* `hanging`---*Hanging indent.* The continuation lines of the paragraph are
indented, but the first line is not. This is often used for glossaries,
references and the like.
* `contd`---*Continued indent* (for use after `hanging`). This indents the full
paragraph to the same depths as continuation lines of a `hanging` paragraph,
but gives an extra `book` indentation to the first line. This is useful, for
example, in a glossary where you wish to continue a hanging paragraph,
without outdenting the first line.
* `blank`---*Blank spacing.* Paragraphs are separated from each other a
vertical blank space. (This the most common paragraph separation on the web.)
If two adjacent paragraphs have `book` or `hanging` indentation respectively,
they are automatically separated by vertical space.
```
*Book indent* is the default, and it is used by this paragraph.
In this second paragraph with book indent, the first line is
indented, as you can see.
*Hanging indent* is often used in glossaries, or in reference
section of articles, and it looks like this.
*Continued indent* can be used when there is more
than one paragraph in a glossary entry.
This is a second paragraph with hanging indent, illustrating the
effect of the `
` above.
*Blank spacing* means that a paragraph is separated from
surrounding paragraphs by vertical space, like this one.
...And this one.
```
Which is rendered like this:
> *Book indent* is the default, and it is used by this paragraph.
>
> In this second paragraph with book indent, the first line is
> indented, as you can see.
>
>
>
> *Hanging indent* is often used in glossaries, or in reference
> section of articles, and it looks like this.
>
>
*Continued indent* can be used when there is more
> than one paragraph in a glossary entry.
>
> This is a second paragraph with hanging indent, illustrating the
> effect of the `
` above.
>
>
>
> *Blank spacing* means that a paragraph is separated from
> surrounding paragraphs by vertical space, like this one.
>
> ...And this one.
>
>
**Note:** Inserting `