### Features

#### Create caption for images and embed links having a title

The optional title can be used to create a caption (`figcaption`) automatically by enabling the [`caption` option](/documentation/configuration/#body).

*Example:*

```markdown
![](/images/img.jpg "Title")
```

Is converted to:

```html
<figure>
  <img src="/image.jpg" title="Title">
  <figcaption>Title</figcaption>
</figure>
```

[Documentation →](/documentation/content/#caption)
