# Customization: Mapping tags

The *Tag text map transformation* customization can be used to handle different notations between tags used in the feature file and tags in Jira (e.g. how white spaces are handled).

{% hint style="info" %}
The *Tag text map transformation* customization described here is an [Enterprise feature](/specsync/jira/licensing.md).
{% endhint %}

With the customization you can substitute characters or sub-strings in tags when synchronizing to Jira. E.g. underscores (`_`) in scenario tags can be represented with spaces in Test Case tags. The customization can even be used to substitute complete tags names as well.

In order to enable this customization, the `customizations/tagTextMapTransformation` section of the configuration has to be enabled. The complete reference of the configuration settings can be found in the [customizations configuration reference](/specsync/jira/reference/configuration/configuration-customizations.md#tagtextmaptransformation).

The following example shows a basic configuration that maps the underscore (`_`) character in Gherkin tags to space in Jira.

{% code title="specsync.json" %}

```javascript
{
  ...
 "customizations": {
    "tagTextMapTransformation": {
      "enabled": true,
      "textMap": {
        "_": " "
      }
    }
  }
  ...
}
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.specsolutions.eu/specsync/jira/features/push-features/customization-mapping-tags.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
