---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://3y3.dev/en/syntax/meta.md
  - href: en/syntax/meta.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
updatedAt: '2023-10-23T16:12:38.000Z'
---
> **Documentation Index:** Fetch the complete configuration index at https://3y3.dev/en/llms.txt

# Comments and metadata

Comments and metadata are markup elements that are not displayed in the built file. They're used to store information in the source text for SEO or the authors of the document.

## Comments {#comments}

To add a comment, use the following markup. Make sure there is an empty line before the comment.

```markdown
[//]: # (Comment)
```

## Metadata {#meta}

You can add metadata in YAML format at the beginning of a file. After conversion, it is returned with the resulting HTML.

```yaml
---
title: Title
description: Description
---
```

