> For the complete documentation index, see [llms.txt](https://docs.powerpointgeneratorapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.powerpointgeneratorapi.com/examples/tagging/tags-in-slide-notes.md).

# Tags in slide notes

1. You can update `notes` section of any slide by providing key–value pairs under `tags`.
2. Each tag replaces a corresponding `{{placeholder}}` found in the slide’s notes.

Reference: [tags](/json-template-syntax/tags.md)

Download: [input.zip](https://drive.google.com/uc?export=download\&id=1_Fy8gnyHaeDoHlkEfULX4S33xUZKx-Zn) | [output.pptx](https://drive.google.com/uc?export=download\&id=1PcT1iem94AqCir-91b2w2gvOZs0KVvvZ)

{% columns %}
{% column width="41.66666666666667%" %}

<figure><img src="/files/txIfmx6RAxM6DJXMWJlt" alt=""><figcaption></figcaption></figure>

***

<figure><img src="/files/Veq7g6FeJQNtSXPuJOrO" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="58.33333333333333%" %}
{% code lineNumbers="true" %}

```json
{
  "presentation": {
    "template": "template.pptx",
    "slides": [
      {
        "slide_index": 0,
        "tags": [
          {
            "key": "author",
            "value": "John Doe"
          },
          {
            "key": "tag-on-line-one",
            "value": "This report shows the latest campaign performance results."
          },
          {
            "key": "tag-in-sentence",
            "value": "five million pounds"
          },
          {
            "key": "tag-1",
            "value": "six percent increase"
          },
          {
            "key": "tag-2",
            "value": "seven point rise in brand awareness"
          }
        ]
      }
    ]
  }
}

```

{% endcode %}
{% endcolumn %}
{% endcolumns %}
